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

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DMappings.java54 private List<String> excludeList; field in class:Mappings
84 if (excludeList == null) {
85 excludeList = new ArrayList<String>();
87 excludeList.add(zone.getName());
119 if (excludeList != null) {
122 if (excludeList.contains(realname)) {
123 excludeList.add(zoneName);
142 boolean isExcluded = (excludeList == null) ?
143 false : excludeList.contains(key);
195 return excludeList;
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java235 public synchronized Map<String, List<String>> getHeaders(String[] excludeList) { argument
236 return filterAndAddHeaders(excludeList, null);
239 public synchronized Map<String, List<String>> filterAndAddHeaders(String[] excludeList, Map<String, List<String>> include) { argument
243 if (excludeList != null) {
244 // check if the key is in the excludeList.
246 for (int j = 0; j < excludeList.length; j++) {
247 if ((excludeList[j] != null) &&
248 (excludeList[j].equalsIgnoreCase(keys[i]))) {

Completed in 47 milliseconds