Browse Source

page level doc blocks and class descriptions

tags/v6.0.0RC1
Morris Jobke 10 years ago
parent
commit
4e0fa85307

+ 5
- 0
lib/public/activity/iconsumer.php View File

@@ -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;

+ 5
- 0
lib/public/activity/imanager.php View File

@@ -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;

+ 5
- 0
lib/public/appframework/app.php View File

@@ -20,6 +20,11 @@
*
*/

/**
* Public interface of ownCloud for apps to use.
* AppFramework/App class
*/

namespace OCP\AppFramework;



+ 4
- 0
lib/public/appframework/iapi.php View File

@@ -20,6 +20,10 @@
*
*/

/**
* Public interface of ownCloud for apps to use.
* AppFramework/IApi interface
*/

namespace OCP\AppFramework;


+ 5
- 0
lib/public/authentication/iapachebackend.php View File

@@ -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;

+ 8
- 0
lib/public/files/alreadyexistsexception.php View File

@@ -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 {}

+ 8
- 0
lib/public/files/entitytoolargeexception.php View File

@@ -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 {}

+ 5
- 0
lib/public/files/file.php View File

@@ -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;

+ 8
- 0
lib/public/files/invalidcontentexception.php View File

@@ -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 {}

+ 8
- 0
lib/public/files/invalidpathexception.php View File

@@ -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 {}

+ 8
- 0
lib/public/files/notenoughspaceexception.php View File

@@ -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 {}

+ 8
- 0
lib/public/files/notfoundexception.php View File

@@ -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 {}

+ 8
- 0
lib/public/files/notpermittedexception.php View File

@@ -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 {}

+ 5
- 0
lib/public/files/storage.php View File

@@ -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;

+ 5
- 0
lib/public/iaddressbook.php View File

@@ -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