MCPcopy Create free account
hub / github.com/amazon-ion/ion-java / accept

Method accept

src/test/java/com/amazon/ion/TestUtils.java:86–93  ·  view source on GitHub ↗
(File dir, String name)

Source from the content-addressed store, hash-verified

84 public And(FilenameFilter... filters) { myFilters = filters; }
85
86 public boolean accept(File dir, String name)
87 {
88 for (FilenameFilter filter : myFilters)
89 {
90 if (! filter.accept(dir, name)) return false;
91 }
92 return true;
93 }
94 }
95
96 /**

Callers

nothing calls this directly

Calls 1

acceptMethod · 0.65

Tested by

no test coverage detected