Package org.jboss.metatype.api.types

Examples of org.jboss.metatype.api.types.GenericMetaType


    * @param mandatory whether the property is expected mandatory
    * @param value the expected property value
    */
   protected void checkPropertyIsManagedObject(ManagedObject managedObject, String name, String description, boolean mandatory, Object value)
   {
      GenericMetaType expectedType = AbstractManagedObjectFactory.MANAGED_OBJECT_META_TYPE;
      MetaValue expectedValue = new GenericValueSupport(expectedType, initManagedObject((Serializable) value));
      checkProperty(managedObject, name, expectedType, expectedValue, description, mandatory);
   }
View Full Code Here


         return null;
     
      ClassInfo classInfo = (ClassInfo) typeInfo;
      Generic generic = classInfo.getUnderlyingAnnotation(Generic.class);
      if (generic != null)
         return new GenericMetaType(typeInfo.getName(), typeInfo.getName());
      return null;
   }
View Full Code Here

/* 396 */       return null;
/*     */     }
/* 398 */     ClassInfo classInfo = (ClassInfo)typeInfo;
/* 399 */     Generic generic = (Generic)classInfo.getUnderlyingAnnotation(Generic.class);
/* 400 */     if (generic != null)
/* 401 */       return new GenericMetaType(typeInfo.getName(), typeInfo.getName());
/* 402 */     return null;
/*     */   }
View Full Code Here

         return null;
     
      ClassInfo classInfo = (ClassInfo) typeInfo;
      Generic generic = classInfo.getUnderlyingAnnotation(Generic.class);
      if (generic != null)
         return new GenericMetaType(typeInfo.getName(), typeInfo.getName());
      return null;
   }
View Full Code Here

TOP

Related Classes of org.jboss.metatype.api.types.GenericMetaType

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.