Package org.kite9.diagram.primitives

Examples of org.kite9.diagram.primitives.HintMap.entrySet()


      // otherwise excessive
      xstream.registerConverter(new Converter() {

        public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) {
          HintMap map = (HintMap) source;
          for (Iterator<Entry<String, Float>> iterator = map.entrySet().iterator(); iterator.hasNext();) {
            Entry<String, Float> entry = iterator.next();
            writer.addAttribute(entry.getKey().toString(), entry.getValue().toString());
          }
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.