Package org.jboss.classloading.spi.metadata

Examples of org.jboss.classloading.spi.metadata.FilterMetaData


   }

   public void testSetExcludedMetaData() throws Exception
   {
      VFSClassLoaderFactory test = new VFSClassLoaderFactory();
      FilterMetaData fmd = new FilterMetaData();
      test.setExcludedMetaData(fmd);
      ManagedObject mo = assertManagedObject(test);
      assertManagedProperty(mo, "excludedMetaData", FilterMetaData.class, fmd);
   }
View Full Code Here


   }

   public void testSetExcludedExportMetaData() throws Exception
   {
      VFSClassLoaderFactory test = new VFSClassLoaderFactory();
      FilterMetaData fmd = new FilterMetaData();
      test.setExcludedExportMetaData(fmd);
      ManagedObject mo = assertManagedObject(test);
      assertManagedProperty(mo, "excludedExportMetaData", FilterMetaData.class, fmd);
   }
View Full Code Here

TOP

Related Classes of org.jboss.classloading.spi.metadata.FilterMetaData

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.