home *** CD-ROM | disk | FTP | other *** search
- // SyntaxItem.h
-
- #import <appkit/appkit.h>
-
- @interface SyntaxItem:Object
- {
- Text *regularExpression;
- char *regularExpressionText;
- Text *matchedSampleText;
- }
-
- - free;
- - read:(NXTypedStream *)stream;
- - write:(NXTypedStream *)stream;
-
- - getRegularExpression;
- - (char *)getRegularExpressionText;
- - getMatchedSampleText;
- - (void)setRegularExpression:re;
- - (void)setMatchedSampleText:text;
-
- @end
-