Package org.jboss.test.kernel.config.support

Examples of org.jboss.test.kernel.config.support.SimpleAnnotationImpl


   public void testPropertyAnnotations() throws Throwable
   {
      BeanMetaDataBuilder builder = BeanMetaDataBuilder.createBuilder("test");
      builder.addPropertyMetaData("ci", builder.createContextualInject());
      builder.addPropertyAnnotation("ci", new SimpleAnnotationImpl());
      BeanMetaData bmd = builder.getBeanMetaData();

      Set<PropertyMetaData> properties = bmd.getProperties();
      assertNotNull(properties);
      assertEquals(1, properties.size());
View Full Code Here

TOP

Related Classes of org.jboss.test.kernel.config.support.SimpleAnnotationImpl

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.