1 11 package org.eclipse.jdt.internal.core; 12 13 import org.eclipse.jdt.core.IJavaElement; 14 15 16 public class OpenableElementInfo extends JavaElementInfo { 17 18 22 protected boolean isStructureKnown = false; 23 24 27 public boolean isStructureKnown() { 28 return this.isStructureKnown; 29 } 30 31 35 public void setIsStructureKnown(boolean newIsStructureKnown) { 36 this.isStructureKnown = newIsStructureKnown; 37 } 38 } 39 | Popular Tags |