Searched defs:targetAttrs (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DAttrFilter.java40 public boolean check(Attributes targetAttrs) throws NamingException; argument
H A DSearchFilter.java71 // Returns true if targetAttrs passes the filter
72 public boolean check(Attributes targetAttrs) throws NamingException { argument
73 if (targetAttrs == null)
76 return rootFilter.check(targetAttrs);
224 public boolean check(Attributes targetAttrs) throws NamingException { argument
227 if(filter.check(targetAttrs) != this.polarity) {
246 public boolean check(Attributes targetAttrs) throws NamingException { argument
247 return !filter.check(targetAttrs);
332 public boolean check(Attributes targetAttrs) { argument
336 Attribute attr = targetAttrs
[all...]

Completed in 155 milliseconds