plugins: plugin loader redesign
[geany-mirror.git] / data / filetypes.java
blob618ec8ae32b89eb1dd65244fd61dc7f809a7ce96
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling=C]
4 [keywords]
5 primary=abstract assert break case catch class const continue default do else enum extends final finally for future generic goto if implements import inner instanceof interface native new outer package private protected public rest return static strictfp super switch synchronized this throw throws transient try var volatile while true false null
6 secondary=boolean byte char double float int long short void
7 # documentation keywords for javadoc
8 doccomment=author deprecated exception param return see serial serialData serialField since throws todo version
9 typedefs=
12 [settings]
13 # default extension used when saving files
14 extension=java
16 # MIME type
17 mime_type=text/x-java
19 # the following characters are these which a "word" can contains, see documentation
20 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
22 # single comments, like # in this file
23 comment_single=//
24 # multiline comments
25 comment_open=/*
26 comment_close=*/
28 # set to false if a comment character/string should start at column 0 of a line, true uses any
29 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
30 #command_example();
31 # setting to false would generate this
32 # command_example();
33 # This setting works only for single line comments
34 comment_use_indent=true
36 # context action command (please see Geany's main documentation for details)
37 context_action_cmd=
39 [indentation]
40 #width=4
41 # 0 is spaces, 1 is tabs, 2 is tab & spaces
42 #type=1
44 [build_settings]
45 # %f will be replaced by the complete filename
46 # %e will be replaced by the filename without extension
47 # (use only one of it at one time)
48 compiler=javac "%f"
49 run_cmd=java "%e"