Package org.timerescue.information

Examples of org.timerescue.information.StringSerial$Constants


   */
  @Override
  public Serializable getParam(String property)
      throws InvalidPropertyException {
    // TODO Auto-generated method stub
    StringSerial params;   
    params = parameters.get(property);
    return params;
  }
View Full Code Here


  /* (non-Javadoc)
   * @see org.timerescue.information.InformationParameters#addParamData(java.lang.String, org.timerescue.information.Serializable)
   */
  @Override
  public void addParamData(String property, Serializable data_object) {
    StringSerial data = (StringSerial) data_object;
    parameters.put(property, data);
  }
View Full Code Here

   * @param value
   */
  public void setProperty(String property, String value) {
    current_properties.addParamData(
        property,
        new StringSerial(value));
  }
View Full Code Here

   * @param property to be obtained
   * @param props Properties object source
   * @return
   */
  private String getProperty(String property, Properties props){
    StringSerial value = new StringSerial();   
    try {
      value = (StringSerial) props.getParam(property);
    } catch (InvalidPropertyException e) {
      // TODO Log this
    }   
    return value.getValue();
  }
View Full Code Here

TOP

Related Classes of org.timerescue.information.StringSerial$Constants

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.