Examples of MapCompositeValueSupport


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

   {
      ManagedObject mo = initMO();
     
      ManagedProperty p = mo.getProperty("map");
      assertNotNull(p);
      MapCompositeValueSupport value = (MapCompositeValueSupport) p.getValue();
      assertNotNull(value);
      assertNotNull(value.get("test1"));
      getLog().debug("keys: " + value.getMetaType().itemSet());
     
      enableTrace("org.jboss.system");
      PersistedManagedObject moElement = restore(mo);
      assertNotNull(moElement);
     
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.