[opencoe-cvs] coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/util _OpenCOEApp.java,1.2,1.3
Status: Alpha
Brought to you by:
rbroberg
From: <rbr...@us...> - 2003-11-25 06:29:38
|
Update of /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/util In directory sc8-pr-cvs1:/tmp/cvs-serv3026/src/COE/src/COE/java/org/opencoe/coe/kernel/util Modified Files: _OpenCOEApp.java Log Message: [ 845321 ] Extend COE to handle optional Application data Index: _OpenCOEApp.java =================================================================== RCS file: /cvsroot/opencoe/coekernel/src/COE/src/COE/java/org/opencoe/coe/kernel/util/_OpenCOEApp.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _OpenCOEApp.java 15 Nov 2003 19:49:35 -0000 1.2 --- _OpenCOEApp.java 25 Nov 2003 04:37:04 -0000 1.3 *************** *** 33,36 **** --- 33,37 ---- private ImageIcon icon = new ImageIcon("/h/COE/data/Icons/gnome-run.png"); private String initclass; + private String initclasspath; *************** *** 171,174 **** --- 172,185 ---- } + /** + * Sets the initClassPath attribute of the _OpenCOEApp object + * + *@param initclasspath The new initClassPath value + */ + public void setInitClassPath(String initclasspath) { + System.out.println("_OpenCOEApp::setInitClassPath::"+initclasspath); + this.initclasspath = initclasspath; + } + /// getter methods /////////////////////////////////// *************** *** 251,254 **** --- 262,275 ---- return initclass; } + + /** + * Gets the initclasspath attribute of the _OpenCOEApp object + * + *@return The initClassPath value + */ + public String getInitClassPath() { + return initclasspath; + } } + |