All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ctreber.acearth.Configuration Maven / Gradle / Ivy

Go to download

PlantUML is a component that allows to quickly write : * sequence diagram, * use case diagram, * class diagram, * activity diagram, * component diagram, * state diagram * object diagram

There is a newer version: 8059
Show newest version
package com.ctreber.acearth;

import java.util.HashMap;
import java.util.Map;

import com.ctreber.aclib.gui.MOBoolean;
import com.ctreber.aclib.gui.MODouble;
import com.ctreber.aclib.gui.MOEnum;
import com.ctreber.aclib.gui.MOInteger;
import com.ctreber.aclib.gui.MOString;
import com.ctreber.aclib.gui.MonitoredObject;

/**
 * 

*

* *

* © 2002 Christian Treber, [email protected] (06.10.2002) *

* * @author Christian Treber, [email protected] * */ public class Configuration { private Map fValues = new HashMap(); /** *

* Item must be added before it can be set or get. * * @param pID * Item name. * @param pObject * Item value container. */ public void add(String pID, MonitoredObject pObject) { fValues.put(pID, pObject); } public void setString(String pID, String pValue) { ((MOString) fValues.get(pID)).set(pValue); } public void setBoolean(String pID, boolean pValue) { ((MOBoolean) fValues.get(pID)).set(pValue); } public void setInt(String pID, int pValue) { ((MOInteger) fValues.get(pID)).set(pValue); } public void setDouble(String pID, double pValue) { ((MODouble) fValues.get(pID)).set(pValue); } public void setEnum(String pID, Object pValue) { ((MOEnum) fValues.get(pID)).set(pValue); } public String getString(String pID) { return ((MOString) fValues.get(pID)).get(); } public boolean getBoolean(String pID) { return ((MOBoolean) fValues.get(pID)).get(); } public int getInt(String pID) { return ((MOInteger) fValues.get(pID)).get(); } public double getDouble(String pID) { return ((MODouble) fValues.get(pID)).get(); } public boolean is(String pID, Object pValue) { return ((MOEnum) fValues.get(pID)).is(pValue); } public MOBoolean getMOBoolean(String pID) { return (MOBoolean) getMO(pID); } public MOString getMOString(String pID) { return (MOString) getMO(pID); } public MOEnum getMOEnum(String pID) { return (MOEnum) getMO(pID); } public MOInteger getMOInteger(String pID) { return (MOInteger) getMO(pID); } public MODouble getMODouble(String pID) { return (MODouble) getMO(pID); } public MonitoredObject getMO(String pID) { final MonitoredObject lMO = (MonitoredObject) fValues.get(pID); if (lMO == null) { throw new IllegalArgumentException("Unknown conf item '" + pID + "'"); } return lMO; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy