Package org.jboss.beans.metadata.spi

Examples of org.jboss.beans.metadata.spi.PropertyMetaData


      assertPlainValue("PlainValue", property.getValue());
   }

   public void testPropertyWithValue() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithValue.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertValue("Value", property.getValue());
   }
View Full Code Here


      assertValue("Value", property.getValue());
   }
  
   public void testPropertyWithInjection() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithInjection.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertInjection(property.getValue());
   }
View Full Code Here

      assertInjection(property.getValue());
   }
  
   public void testPropertyWithCollection() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithCollection.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertCollection(property.getValue());
   }
View Full Code Here

      assertCollection(property.getValue());
   }
  
   public void testPropertyWithList() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithList.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertList(property.getValue());
   }
View Full Code Here

      assertList(property.getValue());
   }
  
   public void testPropertyWithSet() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithSet.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertSet(property.getValue());
   }
View Full Code Here

      assertSet(property.getValue());
   }
  
   public void testPropertyWithArray() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithArray.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertArray(property.getValue());
   }
View Full Code Here

      assertArray(property.getValue());
   }
  
   public void testPropertyWithMap() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithMap.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertMap(property.getValue());
   }
View Full Code Here

      assertMap(property.getValue());
   }
  
   public void testPropertyWithThis() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithThis.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertThis(property.getValue());
   }
View Full Code Here

      assertThis(property.getValue());
   }
  
   public void testPropertyWithNull() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithNull.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertNullValue(property.getValue());
   }
View Full Code Here

      assertNullValue(property.getValue());
   }

   public void testPropertyWithWildcard() throws Exception
   {
      PropertyMetaData property = getProperty("PropertyWithWildcard.xml");
      assertNotNull("PropertyName", property.getName());
      assertNull(property.getAnnotations());
      assertWildcard(property.getValue());
   }
View Full Code Here

TOP

Related Classes of org.jboss.beans.metadata.spi.PropertyMetaData

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.