Package org.jboss.beans.metadata.plugins

Examples of org.jboss.beans.metadata.plugins.AbstractSetMetaData


      assertWildcard(getValue(collection));
   }
  
   public void testSetWithBean() throws Exception
   {
      AbstractSetMetaData collection = getCollection();
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertBean(getValue(collection));
   }
View Full Code Here


      return (AbstractSetMetaData) value;
   }
  
   public void testSet() throws Exception
   {
      AbstractSetMetaData collection = getCollection("Set.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
   }
View Full Code Here

      assertNull(collection.getElementType());
   }
  
   public void testSetWithClass() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithClass.xml");
      assertEquals("CollectionClass", collection.getType());
      assertNull(collection.getElementType());
   }
View Full Code Here

      assertNull(collection.getElementType());
   }
  
   public void testSetWithElementClass() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithElementClass.xml");
      assertNull(collection.getType());
      assertEquals("ElementClass", collection.getElementType());
   }
View Full Code Here

      assertEquals("ElementClass", collection.getElementType());
   }
  
   public void testSetWithValue() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithValue.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertValue("Value", getValue(collection));
   }
View Full Code Here

      assertValue("Value", getValue(collection));
   }
  
   public void testSetWithInjection() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithInjection.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertInjection(getValue(collection));
   }
View Full Code Here

      assertInjection(getValue(collection));
   }
  
   public void testSetWithCollection() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithCollection.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertCollection(getValue(collection));
   }
View Full Code Here

      assertCollection(getValue(collection));
   }
  
   public void testSetWithList() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithList.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertList(getValue(collection));
   }
View Full Code Here

      assertList(getValue(collection));
   }
  
   public void testSetWithSet() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithSet.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertSet(getValue(collection));
   }
View Full Code Here

      assertSet(getValue(collection));
   }
  
   public void testSetWithArray() throws Exception
   {
      AbstractSetMetaData collection = getCollection("SetWithArray.xml");
      assertNull(collection.getType());
      assertNull(collection.getElementType());
      assertArray(getValue(collection));
   }
View Full Code Here

TOP

Related Classes of org.jboss.beans.metadata.plugins.AbstractSetMetaData

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.