checking in as Eclipse project on its own

This commit is contained in:
benfry
2012-12-06 20:30:34 +00:00
parent 08dc2b87e1
commit b81df723f8
5 changed files with 51 additions and 7 deletions

23
java2/.classpath Normal file
View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="lib" path="mode/com.ibm.icu_4.4.2.v20110823.jar"/>
<classpathentry kind="lib" path="mode/CompilationChecker.jar"/>
<classpathentry kind="lib" path="mode/jdi.jar"/>
<classpathentry kind="lib" path="mode/jdimodel.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.contenttype_3.4.200.v20120523-2004.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.jobs_3.5.300.v20120622-204750.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.resources_3.8.1.v20120802-154922.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.core.runtime_3.8.0.v20120521-2346.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.equinox.common_3.6.100.v20120522-1841.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.equinox.preferences_3.5.0.v20120522-1841.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.jdt.core_3.8.2.v20120814-155456.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.jdt.debug_3.7.101.v20120725-115645.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.osgi_3.8.1.v20120830-144521.jar"/>
<classpathentry kind="lib" path="mode/org.eclipse.text_3.5.200.v20120523-1310.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry combineaccessrules="false" kind="src" path="/processing-app"/>
<classpathentry combineaccessrules="false" kind="src" path="/processing-core"/>
<classpathentry kind="lib" path="/processing-app/lib/org-netbeans-swing-outline.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

17
java2/.project Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>processing-java2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6

View File

@@ -38,7 +38,6 @@ public class DebugToolbar extends JavaToolbar {
// preserve original button id's, but re-define so they are accessible
// (they are used by DebugEditor, so they want to be public)
@SuppressWarnings("hiding")
static protected final int RUN = 100; // change this, to be able to get it's name via getTitle()
static protected final int DEBUG = JavaToolbar.RUN;
@@ -47,16 +46,11 @@ public class DebugToolbar extends JavaToolbar {
static protected final int TOGGLE_BREAKPOINT = 103;
static protected final int TOGGLE_VAR_INSPECTOR = 104;
@SuppressWarnings("hiding")
static protected final int STOP = JavaToolbar.STOP;
@SuppressWarnings("hiding")
static protected final int NEW = JavaToolbar.NEW;
@SuppressWarnings("hiding")
static protected final int OPEN = JavaToolbar.OPEN;
@SuppressWarnings("hiding")
static protected final int SAVE = JavaToolbar.SAVE;
@SuppressWarnings("hiding")
static protected final int EXPORT = JavaToolbar.EXPORT;

View File

@@ -895,7 +895,6 @@ public class VariableInspector extends javax.swing.JFrame {
* Prefix a this-fields name with "this." if hidden by a local.
*/
public static final int MODE_PREFIX = 1; // prefix hidden this fields with "this."
@SuppressWarnings("hiding")
protected List<VariableNode> locals;
protected int mode;