home *** CD-ROM | disk | FTP | other *** search
- DEF_COMPONENTNAME
- GeneralTasks
- DEF_SUPERCLASS
- Object
- DEF_SUPERCOMPONENT
-
- DEF_PACKAGE
- mojo
- tasks
- DEF_ENDLIST
- DEF_SUBCOMPONENTLIST
- DEF_ENDLIST
- DEF_SUBCOMPONENTCLASSLIST
- DEF_ENDLIST
- DEF_CATEGORY
-
- DEF_BITMAP
-
- DEF_THUMBNAIL_UP
-
- DEF_THUMBNAIL_DOWN
-
- DEF_IMPORTS
- java.net.URL
- java.net.MalformedURLException
- DEF_ENDLIST
- DEF_REQUIRES
- DEF_ENDLIST
- DEF_IMPLEMENTS
- DEF_ENDLIST
- DEF_DECLARATION
- DEF_ENDLIST
- DEF_METHOD
- public void gotoScreen(String ScreenName)
- {
- applet.layoutManager.show(applet, ScreenName);
- }
- DEF_ENDLIST
- DEF_METHOD
- public void gotoURL(String theURL)
- {
- // variables
- URL aURL = null;
-
- try { aURL = new URL(theURL); }
- catch (MalformedURLException e) {
- System.out.println("Bad URL: " + aURL); }
- if (aURL != null)
- applet.getAppletContext().showDocument(aURL);
- }
- DEF_ENDLIST
- DEF_METHOD
- public void initiateFTP(String FTPSite)
- {
- // variables
- URL aFTPSite = null;
-
- try { aFTPSite = new URL("ftp://" + FTPSite); }
- catch (MalformedURLException e) {
- System.out.println("Bad URL: " + aFTPSite); }
- if (aFTPSite != null)
- applet.getAppletContext().showDocument(aFTPSite);
- }
- DEF_ENDLIST
- DEF_METHOD
- public void initiateEmail(String EmailAddress)
- {
- // variables
- URL aEmailAddress = null;
-
- try { aEmailAddress = new URL("mailto:" + EmailAddress); }
- catch (MalformedURLException e) {
- System.out.println("Bad URL: " + aEmailAddress); }
- if (aEmailAddress != null)
- applet.getAppletContext().showDocument(aEmailAddress);
- }
- DEF_ENDLIST
- DEF_TASK
- Goto Screen
- GeneralTasks
- Transitions
- goto.bmp
- public void gotoScreen(String ScreenName)
- DEF_ENDLIST
- DEF_TASK
- Goto URL
- GeneralTasks
- Networking
- url.bmp
- public void gotoURL(String theURL)
- DEF_ENDLIST
- DEF_TASK
- Initiate FTP
- GeneralTasks
- Networking
- ftp.bmp
- public void initiateFTP(String FTPSite)
- DEF_ENDLIST
- DEF_TASK
- Initiate Email
- GeneralTasks
- Networking
- mail.bmp
- public void initiateEmail(String EmailAddress)
- DEF_ENDLIST
- DEF_ENDCOMPONENT
-