KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > aspectj > ajde > BuildOptionsAdapter


1
2 /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3  *
4  * This file is part of the IDE support for the AspectJ(tm)
5  * programming language; see http://aspectj.org
6  *
7  * The contents of this file are subject to the Mozilla Public License
8  * Version 1.1 (the "License"); you may not use this file except in
9  * compliance with the License. You may obtain a copy of the License at
10  * either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
11  *
12  * Software distributed under the License is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14  * for the specific language governing rights and limitations under the
15  * License.
16  *
17  * The Original Code is AspectJ.
18  *
19  * The Initial Developer of the Original Code is Xerox Corporation. Portions
20  * created by Xerox Corporation are Copyright (C) 1999-2002 Xerox Corporation.
21  * All Rights Reserved.
22  *
23  * Contributor(s):
24  */

25  
26  
27 package org.aspectj.ajde;
28
29 /**
30  * When a particular option is not set its documented default is used.
31  */

32 public interface BuildOptionsAdapter {
33     
34     /**
35      * Use javac to generate .class files. The default is "false".
36      */

37     public boolean getUseJavacMode();
38     
39     /**
40      * Only relevant with Use Javac or Preprocess modes. Specify where to place
41      * intermediate .java files. The default is "workingdir".
42      */

43     public String JavaDoc getWorkingOutputPath();
44     
45     /**
46      * Generate regular Java code into the Working OutputPath. Don't try to generate
47      * any .class files. The default is "false".
48      */

49     public boolean getPreprocessMode();
50     
51     /**
52      * Specify character encoding used by source files. The default is the current
53      * JVM's default.
54      */

55     public String JavaDoc getCharacterEncoding();
56     
57     /**
58      * Support assertions as defined in JLS-1.4. The default is "false".
59      */

60     public boolean getSourceOnePointFourMode();
61       
62     /**
63      * Be extra-lenient in interpreting the Java specification. The default is "false",
64      * i.e. "regular" mode.
65      */

66     public boolean getLenientSpecMode();
67     
68     /**
69      * Be extra-strict in interpreting the Java specification. The default is "false",
70      * i.e. "regular" mode.
71      */

72     public boolean getStrictSpecMode();
73     
74     /**
75      * Make the use of some features from pre-1.0 versions of AspectJ be warnings to ease
76      * porting of old code. The default is "false".
77      */

78     public boolean getPortingMode();
79     
80     /**
81      * The non-standard, typically prefaced with -X when used with a command line compiler.
82      * The default is no non-standard options.
83      */

84     public String JavaDoc getNonStandardOptions();
85 }
86
Popular Tags