1 11 package org.eclipse.jdt.ui.search; 12 13 import org.eclipse.jdt.core.search.IJavaSearchScope; 14 15 16 28 public class PatternQuerySpecification extends QuerySpecification { 29 private String fPattern; 30 private int fSearchFor; 31 private boolean fCaseSensitive; 32 33 49 public PatternQuerySpecification(String pattern, int searchFor, boolean caseSensitive, int limitTo, IJavaSearchScope scope, String scopeDescription) { 50 super(limitTo, scope, scopeDescription); 51 fPattern= pattern; 52 fSearchFor= searchFor; 53 fCaseSensitive= caseSensitive; 54 } 55 56 60 public boolean isCaseSensitive() { 61 return fCaseSensitive; 62 } 63 64 69 public String getPattern() { 70 return fPattern; 71 } 72 73 80 public int getSearchFor() { 81 return fSearchFor; 82 } 83 } 84 | Popular Tags |