Package org.jboss.metatype.api.values

Examples of org.jboss.metatype.api.values.CollectionValueSupport


/*      */
/*  226 */       TypeInfo typeInfo = configuration.getTypeInfo(ce.getClass());
/*  227 */       MetaType metaType = this.metaTypeFactory.resolve(typeInfo);
/*  228 */       elements[(i++)] = internalCreate(ce, typeInfo, metaType);
/*      */     }
/*  230 */     CollectionValue result = new CollectionValueSupport(type, elements);
/*  231 */     mapping.put(value, result);
/*  232 */     return result;
/*      */   }
View Full Code Here


         // recalculate element info, since usually more deterministic
         TypeInfo typeInfo = configuration.getTypeInfo(ce.getClass());
         MetaType metaType = metaTypeFactory.resolve(typeInfo);
         elements[i++] = internalCreate(ce, typeInfo, metaType);            
      }
      CollectionValue result = new CollectionValueSupport(type, elements);
      mapping.put(value, result);
      return result;
   }
View Full Code Here

TOP

Related Classes of org.jboss.metatype.api.values.CollectionValueSupport

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.