1 11 package org.eclipse.jface.text.source; 12 13 import org.eclipse.jface.text.IDocument; 14 import org.eclipse.jface.text.IRegion; 15 16 28 public interface ICharacterPairMatcher { 29 30 33 int RIGHT= 0; 34 37 int LEFT= 1; 38 39 40 43 void dispose(); 44 45 50 void clear(); 51 52 62 IRegion match(IDocument iDocument, int i); 63 64 71 int getAnchor(); 72 } 73 | Popular Tags |