home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <!-- syntaxdefinition for Java 2001 by Jonathan Pierce & Mike Krueger -->
-
- <SyntaxDefinition Name = "JAVA" Extensions = ".java" Indent = "True">
-
- <Environment DefaultColor = "Black" BackgroundColor = "White">
- <HRuler Color = "Blue"/>
- <Selection Color = "LightBlue"/>
- <Cursor Color = "DarkBlue"/>
- <Linenumbers Color = "Black" BackgroundColor = "WhiteSmoke"/>
- <InvalidLines Color = "Red"/>
- <EOLMarkers Color = "DarkCyan"/>
- <SpaceMarkers Color = "DarkCyan"/>
- <TabMarkers Color = "DarkCyan"/>
- <CaretMarker Color = "Yellow"/>
- <BookMarks Color = "#408080"/>
- <FoldLine Color = "#808080" BackgroundColor="Black"/>
- <FoldMarker Color = "#808080" BackgroundColor="White"/>
- </Environment>
-
- <Properties>
- <Property Name = "indentOpen" Value = "{" />
- <Property Name = "indentClose" Value = "}" />
- </Properties>
-
- <Digits Name = "Digits" Bold = "False" Italic = "False" Color = "DarkBlue"/>
-
- <RuleSet IgnoreCase = "False">
- <Delimeters>~!%^*()-+=|\#/{}[]:;"'<> , .?</Delimeters>
-
- <Span Name = "LINECOMMENT" Rule = "TestSet" Bold = "False" Italic = "True" Color = "SlateGray" StopAtEol = "True">
- <Begin>//</Begin>
- </Span>
-
- <Span Name = "BLOCKCOMMENT" Rule = "TestSet" Bold = "False" Italic = "True" Color = "SlateGray" StopAtEol = "False">
- <Begin>/*</Begin>
- <End>*/</End>
- </Span>
-
- <Span Name = "STRING" Bold = "False" Italic = "False" Color = "Magenta" StopAtEol = "True">
- <Begin>"</Begin>
- <End>"</End>
- </Span>
-
- <Span Name = "CHAR" Bold = "False" Italic = "False" Color = "Magenta" StopAtEol = "True">
- <Begin>'</Begin>
- <End>'</End>
- </Span>
-
- <MarkPrevious Bold = "True" Italic = "False" Color = "MidnightBlue">(</MarkPrevious>
-
- <KeyWords Name = "Punctuation" Bold = "False" Italic = "False" Color = "DarkGreen">
- <Key Word = "?" />
- <Key Word = "," />
- <Key Word = "." />
- <Key Word = "(" />
- <Key Word = ")" />
- <Key Word = "[" />
- <Key Word = "]" />
- <Key Word = "{" />
- <Key Word = "}" />
- <Key Word = "+" />
- <Key Word = "-" />
- <Key Word = "/" />
- <Key Word = "%" />
- <Key Word = "*" />
- <Key Word = "<" />
- <Key Word = ">" />
- <Key Word = "^" />
- <Key Word = "!" />
- <Key Word = "|" />
- </KeyWords>
-
-
-
- <KeyWords Name = "AccessKeywords" Bold="True" Italic="False" Color="Black">
- <Key Word = "this" />
- <Key Word = "super" />
- </KeyWords>
-
- <KeyWords Name = "OperatorKeywords" Bold="True" Italic="False" Color="DarkCyan">
- <Key Word = "new" />
- <Key Word = "instanceof" />
- <Key Word = "true" />
- <Key Word = "false" />
- </KeyWords>
-
- <KeyWords Name = "SelectionStatements" Bold="True" Italic="False" Color="Blue">
- <Key Word = "else" />
- <Key Word = "if" />
- <Key Word = "switch" />
- <Key Word = "case" />
- </KeyWords>
-
- <KeyWords Name = "IterationStatements" Bold="True" Italic="False" Color="Blue">
- <Key Word = "do" />
- <Key Word = "for" />
- <Key Word = "while" />
- </KeyWords>
-
- <KeyWords Name = "JumpStatements" Bold="False" Italic="False" Color="Navy">
- <Key Word = "break" />
- <Key Word = "continue" />
- <Key Word = "default" />
- <Key Word = "goto" />
- <Key Word = "return" />
- </KeyWords>
-
- <KeyWords Name = "ExceptionHandlingStatements" Bold="True" Italic="False" Color="Teal">
- <Key Word = "try" />
- <Key Word = "throw" />
- <Key Word = "catch" />
- <Key Word = "finally" />
- </KeyWords>
-
-
- <KeyWords Name = "ValueTypes" Bold="True" Italic="False" Color="Red">
- <Key Word = "boolean" />
- <Key Word = "double" />
- <Key Word = "int" />
- <Key Word = "short" />
- <Key Word = "long" />
- <Key Word = "float" />
- <Key Word = "byte" />
- <Key Word = "char" />
- </KeyWords>
-
- <KeyWords Name = "ReferenceTypes" Bold="False" Italic="False" Color="Red">
- <Key Word = "class" />
- <Key Word = "interface" />
- <Key Word = "object" />
- </KeyWords>
-
- <KeyWords Name = "Void" Bold="False" Italic="False" Color="Red">
- <Key Word = "void" />
- </KeyWords>
-
-
- <KeyWords Name = "Modifiers" Bold="False" Italic="False" Color="Brown">
- <Key Word = "abstract" />
- <Key Word = "const" />
- <Key Word = "static" />
- <Key Word = "final" />
- <Key Word = "native" />
- <Key Word = "extends" />
- <Key Word = "implements" />
- <Key Word = "volatile" />
- <Key Word = "transient" />
- <Key Word = "throws" />
- <Key Word = "strictfp" />
- <Key Word = "synchronized" />
- </KeyWords>
-
- <KeyWords Name = "AccessModifiers" Bold="True" Italic="False" Color="Blue">
- <Key Word = "public" />
- <Key Word = "protected" />
- <Key Word = "private" />
- </KeyWords>
-
- <KeyWords Name = "NameSpaces" Bold="True" Italic="False" Color="Green">
- <Key Word = "package" />
- <Key Word = "import" />
- </KeyWords>
-
- <KeyWords Name = "Literals" Bold="True" Italic="False" Color="Black">
- <Key Word = "null" />
- </KeyWords>
- </RuleSet>
-
- <RuleSet Name = "TestSet" IgnoreCase = "True">
- <Delimeters>~!%^*()-+=|\#/{}[]:;"'<> , .?</Delimeters>
- <KeyWords Name = "Todoword" Bold="True" Italic="True" Color="Red">
- <Key Word = "TODO" />
- </KeyWords>
-
- <KeyWords Name = "JAVADOC comments" Bold="True" Italic="True" Color="DarkGray">
- <Key Word = "@author" />
- <Key Word = "@version" />
- <Key Word = "@param" />
- <Key Word = "@return" />
- <Key Word = "@exception" />
- <Key Word = "@throws" />
- <Key Word = "@see" />
- <Key Word = "@since" />
- <Key Word = "@serial" />
- <Key Word = "@serialField" />
- <Key Word = "@serialData" />
- <Key Word = "@deprecated" />
- </KeyWords>
-
- </RuleSet>
-
- </SyntaxDefinition>