Examples of matchesClassName()


Examples of org.jboss.classloader.spi.filter.ClassFilter.matchesClassName()

      assertFalse(filter.matchesClassName(Collection.class.getName()));
     
      test.setExcludedExportPackages(null);
      filter = test.getExcludedExport();
      assertEquals(ClassFilterUtils.JAVA_ONLY, filter);
      assertTrue(filter.matchesClassName(Object.class.getName()));
      assertTrue(filter.matchesClassName(Collection.class.getName()));
   }
  
   public void testSetImportAll() throws Exception
   {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.