Package Galaxy.Tree.Tool.Input.Other

Examples of Galaxy.Tree.Tool.Input.Other.Display


    super(Display.class);
  }
  @Override
  public Map<String, String> mapFromObject(Object o) {
    // TODO Auto-generated method stub
    Display c = (Display) o;
    Map<String, String> myMapping;
    myMapping = new HashMap<String, String>();
    myMapping.put(NAME_TAG, "option");
    myMapping.put(VALUE_TAG, c.getContents());
    return myMapping;
  }
View Full Code Here


    return myMapping;
  }

  @Override
  public Object mapToObject(Map<String, String> attributes) {
    Display disp;
   
    String contents;
    List<String> tokens = new ArrayList();
    final String val;
    contents = attributes.get(VALUE_TAG);
   
    disp = new Display(contents);
   
    return disp;
  }
View Full Code Here

TOP

Related Classes of Galaxy.Tree.Tool.Input.Other.Display

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.