Different System Combined into one. This is actually AllInOne System Version2
- MSR (Package)
- Main Class (Contains the main method)
- PackageScanner Class (Contains the Class Scanner to whole package)
- SO Class (Shorten
System.out.print()) - System (A System Folder)
Contains All System Classes and Packages
- Add Package
package AllInOneSystem.Systems;- If One Package
- package
AllInOneSystem.Systems.{Your Package Name and Class}
- package
- Add this on you main file
public static String getSystemName() { return "Your System Name"; } public static String getSystemAuthor() { return "Your Name"; } - Take Note:
- main method must be
main() - Remove
String[] Args - Otherwise the System will not work
- main method must be