1 23 24 package org.apache.slide.search; 25 26 import java.util.Set ; 27 28 33 public interface QueryScope { 34 35 public static final int DEPTH_0 = 0; 36 public static final int DEPTH_1 = 1; 37 public static final int DEPTH_INFINITY = Integer.MAX_VALUE; 38 39 44 public Set getExcludeSet(); 45 46 47 52 public Set getIncludeSet(); 53 54 55 61 public String getHref(); 62 63 70 public int getDepth(); 71 72 78 public boolean isCollection (); 79 80 86 public void setIsCollection (boolean isCollection); 87 88 89 97 public Set getExcludedScopes (); 98 99 } 100 | Popular Tags |