View Javadoc
1   package org.vaadin.aceeditor;
2   
3   /**
4    * Ace theme defines the appearance of the editor.
5    * 
6    */
7   public enum AceTheme {
8   	ambiance,
9   	chrome,
10  	clouds,
11  	clouds_midnight,
12  	cobalt,
13  	crimson_editor,
14  	dawn, dreamweaver,
15  	eclipse,
16  	github,
17  	idle_fingers,
18  	katzenmilch,
19  	kuroir,
20  	kr,
21  	merbivore,
22  	merbivore_soft,
23  	mono_industrial,
24  	monokai,
25  	pastel_on_dark,
26  	solarized_dark,
27  	solarized_light,
28  	terminal,
29  	textmate, tomorrow,
30  	tomorrow_night,
31  	tomorrow_night_blue,
32  	tomorrow_night_bright,
33  	tomorrow_night_eighties,
34  	twilight,
35  	vibrant_ink,
36  	xcode;
37  	
38  	public String getRequireString() {
39  		return "ace/theme/"+this.toString();
40  	}
41  }