diff options
| author | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
|---|---|---|
| committer | Tristan Zur <tzur@web.web.ccwn.org> | 2014-03-27 22:27:47 +0100 |
| commit | b62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch) | |
| tree | 86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /js/dojo-1.6/dojox/highlight/languages/java.js | |
Diffstat (limited to 'js/dojo-1.6/dojox/highlight/languages/java.js')
| -rw-r--r-- | js/dojo-1.6/dojox/highlight/languages/java.js | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/js/dojo-1.6/dojox/highlight/languages/java.js b/js/dojo-1.6/dojox/highlight/languages/java.js new file mode 100644 index 0000000..0cfc478 --- /dev/null +++ b/js/dojo-1.6/dojox/highlight/languages/java.js @@ -0,0 +1,69 @@ +/*
+ Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
+ see: http://dojotoolkit.org/license for details
+*/
+
+
+if(!dojo._hasResource["dojox.highlight.languages.java"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
+dojo._hasResource["dojox.highlight.languages.java"] = true;
+dojo.provide("dojox.highlight.languages.java");
+
+dojo.require("dojox.highlight._base");
+
+(function(){
+ var dh = dojox.highlight, dhc = dh.constants;
+ var javakeywords = {
+ 'false': 1, 'int': 1, 'float': 1, 'while': 1, 'private': 1,
+ 'char': 1, 'catch': 1, 'abstract': 1, 'assert': 1,
+ 'const': 1, 'byte': 1, 'for': 1, 'final': 1,
+ 'finally': 1, 'implements': 1, 'import': 1, 'extends': 1,
+ 'long': 1, 'throw': 1, 'instanceof': 2, 'static': 1,
+ 'protected': 1, 'boolean': 1, 'interface': 2, 'native': 1,
+ 'if': 1, 'public': 1, 'new': 1, 'do': 1, 'return': 1,
+ 'goto': 1, 'package': 2, 'void': 2, 'short': 1, 'else': 1,
+ 'break': 1, 'new': 1, 'strictfp': 1, 'super': 1, 'true': 1,
+ 'class': 1, 'synchronized': 1, 'case': 1, 'this': 1, 'short': 1,
+ 'throws': 1, 'transient': 1, 'double': 1, 'volatile': 1,
+ 'try': 1, 'this': 1, 'switch': 1, 'continue': 1
+ }
+ dh.languages.java = {
+ // summary: Java highlight definitions
+ defaultMode: {
+ lexems: [dhc.UNDERSCORE_IDENT_RE],
+ illegal: '</',
+ contains: ['comment', 'string', 'number', 'function','block'],
+ keywords: javakeywords
+ },
+ modes: [
+ dhc.C_LINE_COMMENT_MODE,
+ dhc.C_BLOCK_COMMENT_MODE,
+ dhc.C_NUMBER_MODE,
+ dhc.QUOTE_STRING_MODE,
+ dhc.BACKSLASH_ESCAPE,
+ {
+ className: 'string',
+ begin: '\'',
+ end: '[^\\\\]\'',
+ illegal: '[^\\\\][^\']'
+ },
+ {
+ className: 'function',
+ begin: '\\(',
+ end: '\\)',
+ contains: ['comment', 'number', 'string', 'function', 'block'],
+ keywords: javakeywords
+ },
+ {
+ lexems: [dhc.UNDERSCORE_IDENT_RE],
+ className: 'block',
+ begin: '\\{',
+ end: '\\}',
+ contains: ['comment', 'string', 'number', 'function','block'],
+ keywords: javakeywords
+ }
+ ]
+ };
+})();
+
+}
|
