}
}
}
+ else if ( node.getNodeData().getBinaryCharacters() != null ) {
+ final String[] bc_ary = node.getNodeData().getBinaryCharacters().getPresentCharactersAsStringArray();
+ I: for( final String bc : bc_ary ) {
+ if ( match( bc, query, case_sensitive, partial ) ) {
+ match = true;
+ break I;
+ }
+ }
+ }
if ( match ) {
nodes.add( node );
}
}
}
}
+ else if ( node.getNodeData().getBinaryCharacters() != null ) {
+ final String[] bc_ary = node.getNodeData().getBinaryCharacters()
+ .getPresentCharactersAsStringArray();
+ I: for( final String bc : bc_ary ) {
+ if ( match( bc, query, case_sensitive, partial ) ) {
+ match = true;
+ break I;
+ }
+ }
+ }
if ( !match ) {
all_matched = false;
break;