comparison 2015_05_25/highlighter/shBrushJava.js @ 0:47676a16ed13

Add Slides
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Tue, 14 Jul 2015 17:23:04 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:47676a16ed13
1 /**
2 * SyntaxHighlighter
3 * http://alexgorbatchev.com/SyntaxHighlighter
4 *
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
7 *
8 * @version
9 * 3.0.83 (July 02 2010)
10 *
11 * @copyright
12 * Copyright (C) 2004-2010 Alex Gorbatchev.
13 *
14 * @license
15 * Dual licensed under the MIT and GPL licenses.
16 */
17 ;(function()
18 {
19 // CommonJS
20 typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
21
22 function Brush()
23 {
24 var keywords = 'abstract assert boolean break byte case catch char class const ' +
25 'continue default do double else enum extends ' +
26 'false final finally float for goto if implements import ' +
27 'instanceof int interface long native new null ' +
28 'package private protected public return ' +
29 'short static strictfp super switch synchronized this throw throws true ' +
30 'transient try void volatile while';
31
32 this.regexList = [
33 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
34 { regex: /\/\*([^\*][\s\S]*)?\*\//gm, css: 'comments' }, // multiline comments
35 { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments
36 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
37 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
38 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers
39 { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno
40 { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword
41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword
42 ];
43
44 this.forHtmlScript({
45 left : /(&lt;|<)%[@!=]?/g,
46 right : /%(&gt;|>)/g
47 });
48 };
49
50 Brush.prototype = new SyntaxHighlighter.Highlighter();
51 Brush.aliases = ['java'];
52
53 SyntaxHighlighter.brushes.Java = Brush;
54
55 // CommonJS
56 typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
57 })();