Package Galaxy.Tree.Tool.Database.DBValue

Examples of Galaxy.Tree.Tool.Database.DBValue.AppendParamValue


      ValueTranslationValue v = (ValueTranslationValue)o;
      mymap.put("galaxy_value", v.getGalaxyValue());
      mymap.put("remote_value", v.getRemoteValue());
    }
    else if(o instanceof AppendParamValue){
      AppendParamValue a = (AppendParamValue)o;
      mymap.put("name", a.getName());
      mymap.put("missing", a.getMissing());
     
    }
    return mymap;
  }
View Full Code Here


  public Object mapToObject(Map<String, String> attributes) {
    // TODO Auto-generated method stub
    //Must be
    if(attributes.containsKey("missing") ||
      attributes.containsKey("name")){
      AppendParamValue appendParamValue = new AppendParamValue();
      appendParamValue.setMissing(attributes.get("missing"));
      appendParamValue.setName(attributes.get("name"));
      return appendParamValue;
    }
    else if(attributes.containsKey("galaxy_value") ||
        attributes.containsKey("remote_value")){
      ValueTranslationValue valueTranslationValue =
View Full Code Here

TOP

Related Classes of Galaxy.Tree.Tool.Database.DBValue.AppendParamValue

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.