langtools/test/tools/jdeps/lib/JdepsUtil.java
changeset 42840 dfe1a03d4db4
parent 41442 14db641d4a9f
equal deleted inserted replaced
42839:33f705c03879 42840:dfe1a03d4db4
   145         public Command include(String regex) {
   145         public Command include(String regex) {
   146             filter.includePattern(Pattern.compile(regex));
   146             filter.includePattern(Pattern.compile(regex));
   147             return this;
   147             return this;
   148         }
   148         }
   149 
   149 
   150         public Command includeSystemMoudles(String regex) {
       
   151             filter.includeSystemModules(Pattern.compile(regex));
       
   152             return this;
       
   153         }
       
   154 
       
   155         public Command apiOnly() {
   150         public Command apiOnly() {
   156             this.apiOnly = true;
   151             this.apiOnly = true;
   157             return this;
   152             return this;
   158         }
   153         }
   159 
   154