[Jsmooth-cvs] jsmooth/src/net/charabia/jsmoothgen/application JSmoothModelBean.java, 1.16, 1.17 Pro
Status: Beta
Brought to you by:
reyes
From: Rodrigo R. <re...@us...> - 2007-05-27 09:15:55
|
Update of /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv14961/src/net/charabia/jsmoothgen/application Modified Files: JSmoothModelBean.java PropertiesBuilder.java Log Message: adds support for the splash screen in the jsmooth application Index: PropertiesBuilder.java =================================================================== RCS file: /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application/PropertiesBuilder.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** PropertiesBuilder.java 13 May 2007 20:06:25 -0000 1.17 --- PropertiesBuilder.java 27 May 2007 09:15:48 -0000 1.18 *************** *** 128,131 **** --- 128,137 ---- { String val = prop.getValue(); + if (prop.isLocalFile) + { + // TODO + val = getRenormalizedPathIfNeeded(val, basedir, curdir); + } + if (val == null) val = ""; Index: JSmoothModelBean.java =================================================================== RCS file: /cvsroot/jsmooth/jsmooth/src/net/charabia/jsmoothgen/application/JSmoothModelBean.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** JSmoothModelBean.java 13 May 2007 20:06:25 -0000 1.16 --- JSmoothModelBean.java 27 May 2007 09:15:48 -0000 1.17 *************** *** 62,66 **** public String Key; public String Value; ! public void setKey(String key) { --- 62,67 ---- public String Key; public String Value; ! public boolean isLocalFile = false; ! public void setKey(String key) { |