Package org.deuce.transform.util

Examples of org.deuce.transform.util.IgnoreTree


  private ExcludeIncludeStore(){

    String property = System.getProperty("org.deuce.exclude");
    if( property == null)
      property = "java.*,sun.*,org.eclipse.*,org.junit.*,junit.*,aleph.*";
    excludeTree = new IgnoreTree( property);

    property = System.getProperty("org.deuce.include");
    if( property == null)
      property = "";
    includeTree = new IgnoreTree( property);
  }
View Full Code Here

TOP

Related Classes of org.deuce.transform.util.IgnoreTree

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.