1 11 package org.eclipse.jdt.internal.corext.dom.fragments; 12 13 import org.eclipse.jdt.core.dom.ASTNode; 14 15 36 public interface IASTFragment { 37 38 48 public boolean matches(IASTFragment other); 49 50 54 public IASTFragment[] getSubFragmentsMatching(IASTFragment toMatch); 55 56 62 public ASTNode getAssociatedNode(); 63 64 69 public int getStartPosition(); 70 71 76 public int getLength(); 77 } 78 | Popular Tags |