page level doc blocks and class descriptions

remotes/origin/stable6
Morris Jobke 11 years ago
parent bc8cc9142e
commit 4e0fa85307
  1. 5
      lib/public/activity/iconsumer.php
  2. 5
      lib/public/activity/imanager.php
  3. 5
      lib/public/appframework/app.php
  4. 4
      lib/public/appframework/iapi.php
  5. 5
      lib/public/authentication/iapachebackend.php
  6. 8
      lib/public/files/alreadyexistsexception.php
  7. 8
      lib/public/files/entitytoolargeexception.php
  8. 5
      lib/public/files/file.php
  9. 8
      lib/public/files/invalidcontentexception.php
  10. 8
      lib/public/files/invalidpathexception.php
  11. 8
      lib/public/files/notenoughspaceexception.php
  12. 8
      lib/public/files/notfoundexception.php
  13. 8
      lib/public/files/notpermittedexception.php
  14. 5
      lib/public/files/storage.php
  15. 5
      lib/public/iaddressbook.php

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Activity/IConsumer interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Activity;

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Activity/IManager interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Activity;

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* AppFramework/App class
*/
namespace OCP\AppFramework;

@ -20,6 +20,10 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* AppFramework/IApi interface
*/
namespace OCP\AppFramework;

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Authentication/IApacheBackend interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Authentication;

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/AlreadyExistsException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for already existing files/folders
*/
class AlreadyExistsException extends \Exception {}

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/EntityTooLargeException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for too large entity
*/
class EntityTooLargeException extends \Exception {}

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/File interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/InvalidContentException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for invalid content
*/
class InvalidContentException extends \Exception {}

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/InvalidPathException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for invalid path
*/
class InvalidPathException extends \Exception {}

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/NotEnoughSpaceException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for not enough space
*/
class NotEnoughSpaceException extends \Exception {}

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/NotFoundException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for not found entity
*/
class NotFoundException extends \Exception {}

@ -20,8 +20,16 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/NotPermittedException class
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;
/**
* Exception for not permitted action
*/
class NotPermittedException extends \Exception {}

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* Files/Storage interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP\Files;

@ -20,6 +20,11 @@
*
*/
/**
* Public interface of ownCloud for apps to use.
* IAddressBook interface
*/
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal ownCloud classes
namespace OCP {

Loading…
Cancel
Save