Update of /cvsroot/larm/larm/src/java/larm/config
In directory sc8-pr-cvs1:/tmp/cvs-serv23925/src/java/larm/config
Modified Files:
PropertyManager.java
Removed Files:
ConfigList.java Configuration.java
Log Message:
- Big bad update, reorganization, etc.
Index: PropertyManager.java
===================================================================
RCS file: /cvsroot/larm/larm/src/java/larm/config/PropertyManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PropertyManager.java 24 Jul 2003 11:48:08 -0000 1.1
--- PropertyManager.java 29 Jul 2003 15:11:40 -0000 1.2
***************
*** 1,6 ****
- /*
- *
- * $Id$
- */
package larm.config;
--- 1,2 ----
***************
*** 18,31 ****
*
* @author
*/
public class PropertyManager implements Configurable
{
!
static Logger log = Logger.getLogger(PropertyManager.class.getName());;
!
public PropertyManager()
{
}
!
/**
* @see larm.config.Configurable#configure(larm.config.Configuration)
--- 14,28 ----
*
* @author
+ * @version $Id$
*/
public class PropertyManager implements Configurable
{
!
static Logger log = Logger.getLogger(PropertyManager.class.getName());;
!
public PropertyManager()
{
}
!
/**
* @see larm.config.Configurable#configure(larm.config.Configuration)
***************
*** 43,51 ****
System.setProperty(name, value);
}
!
props = conf.getSubConfigList("property[@file]");
for(int i = 0; i < props.length(); i++)
{
! String fileName=null;
try
{
--- 40,48 ----
System.setProperty(name, value);
}
!
props = conf.getSubConfigList("property[@file]");
for(int i = 0; i < props.length(); i++)
{
! String fileName=null;
try
{
--- ConfigList.java DELETED ---
--- Configuration.java DELETED ---
|