1 11 package org.eclipse.jdt.internal.codeassist.select; 12 13 import org.eclipse.jdt.internal.compiler.lookup.*; 14 15 public class SelectionNodeFound extends RuntimeException { 16 17 public Binding binding; 18 public boolean isDeclaration; 19 private static final long serialVersionUID = -7335444736618092295L; 21 public SelectionNodeFound() { 22 this(null, false); } 24 public SelectionNodeFound(Binding binding) { 25 this(binding, false); 26 } 27 public SelectionNodeFound(Binding binding, boolean isDeclaration) { 28 this.binding = binding; 29 this.isDeclaration = isDeclaration; 30 } 31 } 32 | Popular Tags |