1 19 20 package org.netbeans.modules.java.codegen; 21 22 import java.util.Collection ; 23 24 import org.openide.text.PositionBounds; 25 import org.openide.src.SourceException; 26 27 32 interface ContainerImpl extends TextBinding.Container { 33 public ElementBinding findPrevious(ElementBinding ref); 34 public ElementBinding findNext(ElementBinding ref); 35 public ElementBinding findParent(); 36 public void updateChildren(Collection c); 37 public void insertChild(ElementBinding n, ElementBinding previous, ElementBinding next) throws SourceException; 38 } 39 40 | Popular Tags |