|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectSIDE
public class SIDE
The main class of Simple IDE. All of the fun stuff is done here.
Field Summary | |
---|---|
static SIDE |
_instance
|
static java.lang.String |
version
|
Constructor Summary | |
---|---|
SIDE(java.lang.String[] args)
Constructor for SIDE. |
Method Summary | |
---|---|
void |
actionPerformed(java.awt.event.ActionEvent evt)
Action performed, all actions are sent as a string into the doAction method. |
void |
doAction(java.lang.String cmd)
This processes all commands and does what is requested. |
void |
jar()
Packages all the files into a jar with a name of your choice. |
static void |
launchURL(java.lang.String url)
Opens a URL in a new browser |
static void |
log(java.lang.String message)
This simply prints a message to the console. |
static void |
main(java.lang.String[] args)
Entry point for the JVM. |
boolean |
newProject(boolean quick)
Creates a new project, asks all the necesary questions. |
void |
openProject()
Loads a project configuration of your choice. |
void |
run()
Dynamically loads all of the classes in the binary directory and runs the specified main class via reflection. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String version
public static SIDE _instance
Constructor Detail |
---|
public SIDE(java.lang.String[] args)
args
- Arguments to pass to the application.Method Detail |
---|
public static void main(java.lang.String[] args)
args
- Arguments to pass to the application.public static void log(java.lang.String message)
message
- String to System.out.printlnpublic void actionPerformed(java.awt.event.ActionEvent evt)
actionPerformed
in interface java.awt.event.ActionListener
doAction(String)
public void doAction(java.lang.String cmd)
cmd
- The command to do in string format, ignores case.public void run()
public void jar()
public void openProject()
public boolean newProject(boolean quick)
quick
- True to only ask required questions and default the rest, false to ask everything.
public static void launchURL(java.lang.String url)
url
- The url to open
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |