1 11 package org.eclipse.jdt.internal.ui.search; 12 13 import org.eclipse.jdt.core.IJavaElement; 14 15 public class JavaSearchDescription { 16 private int fLimitTo; 17 private IJavaElement fElementPattern; 18 private String fStringPattern; 19 private String fScopeDescription; 20 21 public IJavaElement getElementPattern() { 22 return fElementPattern; 23 } 24 25 public int getLimitTo() { 26 return fLimitTo; 27 } 28 29 public String getStringPattern() { 30 return fStringPattern; 31 } 32 33 public String getScopeDescription() { 34 return fScopeDescription; 35 } 36 37 43 public JavaSearchDescription( 44 int limitTo, 45 IJavaElement elementPattern, 46 String stringPattern, 47 String scopeDescription) { 48 super(); 49 fLimitTo= limitTo; 50 fElementPattern= elementPattern; 51 fStringPattern= stringPattern; 52 fScopeDescription= scopeDescription; 53 } 54 } 55 | Popular Tags |