-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprj.el
More file actions
59 lines (59 loc) · 2.04 KB
/
prj.el
File metadata and controls
59 lines (59 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
(jde-project-file-version "1.0")
(jde-set-variables
;; java file header
;; '(jde-gen-buffer-boilerplate
;; (quote
;; ("/*"
;; " * Geotools - OpenSource mapping toolkit"
;; " * http://geotools.org"
;; " * (C) 2002, Geotools Project Managment Committee (PMC)"
;; " *"
;; " * This library is free software; you can redistribute it and/or"
;; " * modify it under the terms of the GNU Lesser General Public"
;; " * License as published by the Free Software Foundation;"
;; " * version 2.1 of the License."
;; " *"
;; " * This library is distributed in the hope that it will be useful,"
;; " * but WITHOUT ANY WARRANTY; without even the implied warranty of"
;; " * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU"
;; " * Lesser General Public License for more details."
;; " *"
;; " */")))
;; log size
'(jde-log-max 5000)
;; auto-complete
'(jde-enable-abbrev-mode nil)
;; source file paths
`(jde-sourcepath
(quote
(,(expand-file-name "./src")
,(expand-file-name "./res")
,(expand-file-name "./gen")
,(expand-file-name (concat (getenv "JAVA_HOME") "/src")))))
;; classpath
`(jde-global-classpath
(quote
(,(expand-file-name "./bin/classes")
,(expand-file-name "android.jar" android-mode-sdk-dir))))
;; startup class
'(jde-run-application-class "com.nullware.android.fortunequote.FortuneQuote")
'(jde-run-working-directory ".")
;; make program
'(jde-make-program "ant")
;; make args
'(jde-make-args "jar")
;; javadoc version tag template
;; '(jde-javadoc-version-tag-template "\"* @version $Id: prj.el,v 1.4 2003/04/23 14:28:25 kobit Exp $\"")
;; bracket placement style
;; '(jde-gen-k&r t)
;; have separate import for each used class
'(jde-import-auto-collapse-imports nil)
;; jdk
'(jde-compile-option-target (quote ("1.6")))
;; sort imports
'(jde-import-auto-sort t)
;; syntax highlighting buffer parse interval
;; '(jde-auto-parse-buffer-interval 180)
;; project email address
;; '(user-mail-address "kylewsherman@gmail.com")
)