Package org.jboss.metatype.api.values

Examples of org.jboss.metatype.api.values.CompositeValue.containsKey()


/* 123 */       if ((p.getMetaType() instanceof CompositeMetaType))
/*     */       {
/* 125 */         cvalue = (CompositeValue)p.getValue();
/* 126 */         for (String key : cvalue.getMetaType().keySet())
/*     */         {
/* 128 */           if (cvalue.containsKey(key))
/*     */           {
/* 130 */             SimpleValue svalue = (SimpleValue)cvalue.get(key);
/* 131 */             String string = svalue.toString();
/* 132 */             fw.write("  <");
/* 133 */             fw.write(key);
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.