mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
checking in as Eclipse project on its own
This commit is contained in:
23
java2/.classpath
Normal file
23
java2/.classpath
Normal 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
17
java2/.project
Normal 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>
|
||||
11
java2/.settings/org.eclipse.jdt.core.prefs
Normal file
11
java2/.settings/org.eclipse.jdt.core.prefs
Normal 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
|
||||
@@ -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;
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user