| java.lang.Object org.gjt.sp.jedit.syntax.SyntaxUtilities
SyntaxUtilities | public class SyntaxUtilities (Code) | | Contains utility functions used by the syntax highlighting code.
since: jEdit 4.2pre1 version: $Id: SyntaxUtilities.java 4651 2003-04-28 01:35:29Z spestov $ author: Slava Pestov |
Method Summary | |
public static boolean | regionMatches(boolean ignoreCase, Segment text, int offset, char[] match) Checks if a subregion of a Segment is equal to a
character array. |
regionMatches | public static boolean regionMatches(boolean ignoreCase, Segment text, int offset, char[] match)(Code) | | Checks if a subregion of a Segment is equal to a
character array.
Parameters: ignoreCase - True if case should be ignored, false otherwise Parameters: text - The segment Parameters: offset - The offset into the segment Parameters: match - The character array to match since: jEdit 4.2pre1 |
|
|