1 11 package org.eclipse.jdt.internal.core.search.matching; 12 13 import org.eclipse.jdt.core.IJavaElement; 14 import org.eclipse.jdt.internal.compiler.util.SimpleSet; 15 16 public class DeclarationOfAccessedFieldsPattern extends FieldPattern { 17 18 protected IJavaElement enclosingElement; 19 protected SimpleSet knownFields; 20 21 public DeclarationOfAccessedFieldsPattern(IJavaElement enclosingElement) { 22 super(false, true, true, null, null, null, null, null, R_PATTERN_MATCH); 23 24 this.enclosingElement = enclosingElement; 25 this.knownFields = new SimpleSet(); 26 ((InternalSearchPattern)this).mustResolve = true; 27 } 28 } 29 | Popular Tags |