package-info.java

This commit is contained in:
main() 2012-01-03 13:41:49 +01:00
parent 632e926098
commit cf21793262
11 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,5 @@
/**
* The Multiverse-API, containing lots of interfaces that can be quite useful for other
* plugins when interacting with Multiverse.
*/
package com.onarandombox.MultiverseCore.api;

View File

@ -0,0 +1,4 @@
/**
* This package contains all Commands.
*/
package com.onarandombox.MultiverseCore.commands;

View File

@ -0,0 +1,4 @@
/**
* This package contains the Multiverse-configuration.
*/
package com.onarandombox.MultiverseCore.configuration;

View File

@ -0,0 +1,4 @@
/**
* This package contains all destination-types.
*/
package com.onarandombox.MultiverseCore.destination;

View File

@ -0,0 +1,4 @@
/**
* This package contains all enums.
*/
package com.onarandombox.MultiverseCore.enums;

View File

@ -0,0 +1,4 @@
/**
* This package contains all events.
*/
package com.onarandombox.MultiverseCore.event;

View File

@ -0,0 +1,4 @@
/**
* This package contains all exceptions.
*/
package com.onarandombox.MultiverseCore.exceptions;

View File

@ -0,0 +1,4 @@
/**
* This package contains all listeners.
*/
package com.onarandombox.MultiverseCore.listeners;

View File

@ -0,0 +1,4 @@
/**
* The "master"-package, containing everything related to Multiverse-Core.
*/
package com.onarandombox.MultiverseCore;

View File

@ -0,0 +1,4 @@
/**
* This package contains all Utility-clases.
*/
package com.onarandombox.MultiverseCore.utils;

View File

@ -0,0 +1,4 @@
/**
* This package contains webpaste-utilities.
*/
package com.onarandombox.MultiverseCore.utils.webpaste;