|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
edu.rice.* |
---|
edu.rice.cs.drjava.CodeStatus | ||
---|---|---|
public static final boolean |
DEVELOPMENT |
true |
edu.rice.cs.drjava.DependenciesTest | ||
---|---|---|
public static final String |
REQUIRED_UTIL_VERSION |
"20040521-1616" |
edu.rice.cs.drjava.DrJavaRoot | ||
---|---|---|
public static final int |
ADVANCED_LEVEL |
3 |
public static final int |
ELEMENTARY_LEVEL |
1 |
public static final int |
FULL_JAVA |
0 |
public static final int |
INTERMEDIATE_LEVEL |
2 |
public static final String |
PLASTIC_THEMES_PACKAGE |
"com.jgoodies.looks.plastic.theme" |
public static final String |
TEST_DEBUGGER_CLASS |
"com.sun.jdi.Bootstrap" |
edu.rice.cs.drjava.DrJavaTestCase | ||
---|---|---|
public static final String |
TEST_DRJAVA_CONFIG_PROPERTY |
"drjava.test.config" |
edu.rice.cs.drjava.RemoteControlClient | ||
---|---|---|
public static final int |
REMOTE_CONTROL_TIMEOUT |
250 |
edu.rice.cs.drjava.RemoteControlServer | ||
---|---|---|
public static final String |
QUERY_PREFIX |
"DrJava Remote Control?" |
public static final String |
RESPONSE_PREFIX |
"DrJava Remote Control " |
edu.rice.cs.drjava.config.OptionConstants | ||
---|---|---|
public static final String |
EXTERNAL_SAVED_PREFIX |
"external.saved." |
public static final String |
EXTPROCESS_FILE_EXTENSION |
".djapp" |
public static final String |
EXTPROCESS_FILE_NAME_INSIDE_JAR |
"process.djapp" |
public static final String |
JAVADOC_1_3_TEXT |
"1.3" |
public static final String |
JAVADOC_1_4_TEXT |
"1.4" |
public static final String |
JAVADOC_1_5_TEXT |
"1.5" |
public static final String |
JAVADOC_1_6_TEXT |
"1.6" |
public static final String |
JAVADOC_AUTO_TEXT |
"use compiler version" |
public static final String |
JAVADOC_NONE_TEXT |
"none" |
public static final String |
OLD_PROJECT_FILE_EXTENSION |
".pjt" |
public static final String |
PROJECT_FILE_EXTENSION |
".xml" |
edu.rice.cs.drjava.config.OptionMapLoaderTest | ||
---|---|---|
public static final String |
OPTION_DOC |
"# this is a fake header\nthis.is.a.real.key = value\nindent.level = 1\njavac.location = foo\nextra.classpath = bam\n\n" |
edu.rice.cs.drjava.config.PropertyMaps | ||
---|---|---|
protected static final String |
VARIABLES_CATEGORY |
"$Variables$" |
edu.rice.cs.drjava.model.AbstractDJDocument | ||
---|---|---|
protected static final String |
delimiters |
" \t\n\r{}()[].+-/*;:=!@#$%^&*~<>?,\"`\'<>|" |
protected static final char |
newline |
10 |
public static final int |
POS_THRESHOLD |
10000 |
edu.rice.cs.drjava.model.AbstractGlobalModel | ||
---|---|---|
public static final int |
DIFF_THRESHOLD |
5 |
public static final int |
WRITE_DELAY |
50 |
edu.rice.cs.drjava.model.GlobalModelCompileSuccessTestCase | ||
---|---|---|
protected static final String |
FOO_NON_PUBLIC_CLASS_TEXT |
"class DrJavaTestFoo {} class Foo{}" |
protected static final String |
FOO_PACKAGE_AS_PART_OF_FIELD |
"class DrJavaTestFoo { int cur_package = 5; }" |
protected static final String |
FOO_WITH_ASSERT |
"class DrJavaTestFoo { void foo() { assert true; } }" |
protected static final String |
FOO_WITH_GENERICS |
"class DrJavaTestFooGenerics<T> {}" |
protected static final String |
FOO2_EXTENDS_FOO_TEXT |
"class DrJavaTestFoo2 extends DrJavaTestFoo {}" |
protected static final String |
FOO2_REFERENCES_NON_PUBLIC_CLASS_TEXT |
"class DrJavaTestFoo2 extends Foo{}" |
edu.rice.cs.drjava.model.GlobalModelTestCase | ||
---|---|---|
protected static final String |
BAR_TEXT |
"class DrJavaTestBar {}" |
protected static final String |
BAZ_TEXT |
"class DrJavaTestBaz extends DrJavaTestFoo { public static int x = 3; }" |
protected static final String |
FOO_MISSING_CLOSE_TEXT |
"class DrJavaTestFoo {" |
protected static final String |
FOO_PACKAGE_AFTER_IMPORT |
"import java.util.*;\npackage a;\nclass DrJavaTestFoo {}" |
protected static final String |
FOO_PACKAGE_AS_FIELD |
"class DrJavaTestFoo { int package; }" |
protected static final String |
FOO_PACKAGE_AS_FIELD_2 |
"class DrJavaTestFoo { int package = 5; }" |
protected static final String |
FOO_PACKAGE_AS_PART_OF_FIELD |
"class DrJavaTestFoo { int cur_package = 5; }" |
protected static final String |
FOO_PACKAGE_INSIDE_CLASS |
"class DrJavaTestFoo { package a; }" |
protected static final String |
FOO_TEXT |
"class DrJavaTestFoo {}" |
edu.rice.cs.drjava.model.debug.DebugTestCase | ||
---|---|---|
protected static final String |
CLASS_WITH_STATIC_FIELD |
"public class DrJavaDebugStaticField {\n public static int x = 0;\n public void bar() {\n System.out.println(\"x == \" + x);\n x++;\n }\n public static void main(String[] nu) {\n new Thread(\"stuff\") {\n public void run() {\n new DrJavaDebugStaticField().bar();\n }\n }.start();\n new DrJavaDebugStaticField().bar();\n }\n}" |
protected static final String |
DEBUG_CLASS |
"class DrJavaDebugClass {\n public void foo() {\n System.out.println(\"Foo Line 1\");\n bar();\n System.out.println(\"Foo Line 3\");\n }\n public void bar() {\n System.out.println(\"Bar Line 1\");\n System.out.println(\"Bar Line 2\");\n }\n}\nclass DrJavaDebugClass2 {\n public void baz() {\n System.out.println(\"Baz Line 1\");\n new DrJavaDebugClass().bar();\n }\n}" |
protected static final String |
DEBUG_CLASS_WITH_PACKAGE |
"package a;\npublic class DrJavaDebugClassWithPackage {\n public void foo() {\n System.out.println(\"foo line 1\");\n System.out.println(\"foo line 2\");\n }\n}" |
protected static final String |
INNER_CLASS_WITH_LOCAL_VARS |
"class InnerClassWithLocalVariables {\n public static void main(final String[] args) {\n final int numArgs = args.length;\n final int inlined = 0;\n new Runnable() {\n public void run() {\n System.out.println(\"numArgs: \" + numArgs);\n System.out.println(\"inlined: \" + inlined);\n System.out.println(\"args.length: \" + args.length);\n }\n }.run();\n }\n}\n" |
protected static final String |
MONKEY_CLASS |
"class Monkey {\n public static void main(String[] args) {\n\n Thread t = new Thread(){\n public void run(){\n try{\n Thread.sleep(1000);\n }\n catch(InterruptedException e){\n }\n System.out.println(\"I\'m a thread! Yeah!\");\n }\n };\n try{\n t.start();\n System.out.println(\"I just woke up. I\'m a big boy now.\");\n System.out.println(\"James likes bananas!\");\n System.out.println(\"Yes they do.\");\n }catch(Exception e){\n e.printStackTrace();\n }\n }\n}\n" |
protected static final String |
MONKEY_STATIC_STUFF |
"class MonkeyStaticStuff {\n static int foo = 6;\n static class MonkeyInner {\n static int innerFoo = 8;\n static public class MonkeyTwoDeep {\n static int twoDeepFoo = 13;\n static class MonkeyThreeDeep {\n public static int threeDeepFoo = 18;\n public static void threeDeepMethod() {\n System.out.println(MonkeyStaticStuff.MonkeyInner.MonkeyTwoDeep.MonkeyThreeDeep.threeDeepFoo);\n System.out.println(MonkeyTwoDeep.twoDeepFoo);\n System.out.println(MonkeyStaticStuff.foo);\n System.out.println(MonkeyStaticStuff.MonkeyInner.innerFoo);\n System.out.println(MonkeyInner.MonkeyTwoDeep.twoDeepFoo);\n System.out.println(innerFoo);\n }\n }\n static int getNegativeTwo() { return -2; }\n }\n }\n}" |
protected static final String |
MONKEY_WITH_INNER_CLASS |
"class Monkey {\n static int foo = 6; \n class MonkeyInner { \n int innerFoo = 8;\n class MonkeyInnerInner { \n int innerInnerFoo = 10;\n public void innerMethod() { \n int innerMethodFoo;\n String nullString = null;\n innerMethodFoo = 12;\n foo++;\n innerFoo++;\n innerInnerFoo++;\n innerMethodFoo++;\n staticMethod();\n System.out.println(\"innerMethodFoo: \" + innerMethodFoo);\n }\n }\n }\n public void bar() {\n final MonkeyInner.MonkeyInnerInner mi = \n new MonkeyInner().new MonkeyInnerInner();\n mi.innerMethod();\n final int localVar = 99;\n new Thread() {\n public void run() {\n final int localVar = mi.innerInnerFoo;\n new Thread() {\n public void run() {\n new Thread() {\n public void run() {\n System.out.println(\"localVar = \" + localVar);\n }\n }.run();\n }\n }.run();\n }\n }.run();\n }\n public static void staticMethod() {\n int z = 3;\n }\n}\n" |
protected static final String |
SUSPEND_CLASS |
"class Suspender {\n public static void main(String[] args) {\n Thread t1 = new Thread(){\n public void run(){\n int a = 1;\n while(true);\n }\n };\n t1.start();\n }\n}" |
protected static final String |
THREAD_DEATH_CLASS |
"class Jones {\n public static void threadShouldDie() {\n Thread cooper = new Thread() {\n public void run() {\n System.out.println(\"This thread should die.\");\n }\n };\n cooper.start();\n while(cooper.isAlive()) {}\n System.out.println(\"Thread died.\");\n }\n}" |
edu.rice.cs.drjava.model.debug.DebugWatchData | ||
---|---|---|
public static final String |
NO_TYPE |
"" |
public static final String |
NO_VALUE |
"<not found>" |
public static final String |
NOT_LOADED |
"<not loaded>" |
edu.rice.cs.drjava.model.debug.jpda.DebugAction<T extends com.sun.jdi.request.EventRequest> | ||
---|---|---|
public static final int |
ANY_LINE |
-1 |
edu.rice.cs.drjava.model.debug.jpda.DocumentDebugAction<T extends com.sun.jdi.request.EventRequest> | ||
---|---|---|
public final int |
SHORT_DOC_MAX_LENGTH |
20000 |
edu.rice.cs.drjava.model.definitions.DefinitionsDocumentTest | ||
---|---|---|
protected final String |
C_PUBLIC_EI_TEXT |
"/*bof*/package temp;\n\nclass C { }\npublic enum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\ninterface I { }\n}\n" |
protected final String |
C_PUBLIC_IE_TEXT |
"/*bof*/package temp;\n\nclass C { }\npublic interface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nenum E { }\n}\n" |
protected final String |
CEI_TEXT |
"/*bof*/package temp;\n\nclass C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\nenum E { }\ninterface I { }\n}\n" |
protected final String |
CIE_TEXT |
"/*bof*/package temp;\n\nclass C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\ninterface I { }\nenum E { }\n}\n" |
protected final String |
E_PUBLIC_CI_TEXT |
"/*bof*/package temp;\n\nenum E { }\npublic class C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\ninterface I { }\n}\n" |
protected final String |
E_PUBLIC_IC_TEXT |
"/*bof*/package temp;\n\nenum E { }\npublic interface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nclass C { }\n}\n" |
protected final String |
ECI_TEXT |
"/*bof*/package temp;\n\nenum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\nclass C { }\ninterface I { }\n}\n" |
protected final String |
EIC_TEXT |
"/*bof*/package temp;\n\nenum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\ninterface I { }\nclass C { }\n}\n" |
protected final String |
I_PUBLIC_CE_TEXT |
"/*bof*/package temp;\n\ninterface I { }\npublic class C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\nenum E { }\n}\n" |
protected final String |
I_PUBLIC_EC_TEXT |
"/*bof*/package temp;\n\ninterface I { }\npublic enum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\nclass C { }\n}\n" |
protected final String |
ICE_TEXT |
"/*bof*/package temp;\n\ninterface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nclass C { }\nenum E { }\n}\n" |
protected final String |
IEC_TEXT |
"/*bof*/package temp;\n\npublic interface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nenum E { }\nclass C { }\n}\n" |
protected final String |
NESTED_CLASSES_TEXT |
"/*bof*/package Temp;\n\npublic class Test {\n private int i;\n \n public void foo(Test other) {\n i = other.i;\n \n }\n \n public void bar() {\n System.out.println(i);\n }\n \n public static interface Interf {\n static long C = System.currentTimeMillis();\n public void act();\n }\n \n static class Implementor implements Interf {\n public void act() { /*Implementor.act*/\n System.out.println(C);\n Interf inter = new Interf() { /*Implementor$1*/\n public void act() {\n System.out.println(\"Test$Implementor$1\");\n Interf inter = new Interf() { /*Implementor$1$1*/\n public void act() {\n System.out.println(\"Test$Implementor$1$1\");\n }\n };\n Inner<Integer> inn = new Inner<Integer>() { /*Implementor$1$2*/\n public void set(Integer t) { _t = t; }\n };\n } /*b-Implementor$1*/\n }; /*b-Implementor*/\n } /*c-Implementor*/\n \n public abstract class Inner<T> { /*Implementor$Inner*/\n protected T _t; /*b-Implementor$Inner*/\n public abstract void set(T t);\n }\n }\n \n public void anon() { /*anon()*/\n Interf inter = new Interf() { /*Test$1*/\n class NamedInAnonymous implements Interf { /*Test$1$NamedInAnonymous*/\n public void act() {\n System.out.println(\"Test$1$NamedInAnonymous\");\n }\n }\n public void act() { /*b-Test$1*/\n System.out.println(\"Test$1\");\n NamedInAnonymous nia = new NamedInAnonymous();\n nia.act();\n }\n };\n inter.act(); /*b-anon()*/\n Interf inter2 = new Interf() { /*Test$2*/\n public void act() {\n System.out.println(\"Test$2\");\n Interf inter = new Interf() { /*Test$2$1*/\n public void act() {\n System.out.println(\"Test$2$1\");\n }\n };\n inter.act();\n }\n };\n inter2.act();\n Interf inter3 = new Implementor() { /*Test$3*/\n public void act() {\n System.out.println(\"Test$3\");\n }\n };\n inter3.act();\n }\n \n public Test(int j) { if (true) { i = j; } }\n \n protected abstract class Param<T> {\n T _t;\n public Param(T t, T t2) { _t = t; }\n public abstract void paramDo();\n }\n \n public void anon2() {\n Param<Interf> p = new Param<Interf>(/*anon2()*/new Interf() { /*Test$4*/\n public void act() {\n System.out.println(\"parameter 1 = Test$4\");\n Interf i = new Interf() { /*Test$4$1*/\n public void act() {\n System.out.println(\"Test$4$1\");\n }\n };\n }\n }, /*b-anon2()*/ new Interf() { /*Test$5*/\n public void act() {\n System.out.println(\"parameter 2 = Test$5\");\n }\n }) /*c-anon2()*/ { /*Test$6*/\n public void paramDo() {\n System.out.println(\"Test$6\");\n }\n };\n }\n\n public void anon3() {\n Param<Interf> p = new Param<Interf>(/*anon3()*/new Interf() { /*Test$7*/\n class NamedClassAgain {\n void doSomething() { System.out.println(\"doSomething\"); }\n }\n public void act() {\n System.out.println(\"parameter 3 = Test$7\");\n Interf i = new Interf() { /*Test$7$1*/\n public void act() {\n System.out.println(\"Test$7$1\");\n }\n };\n }\n }) /*c-anon2()*/ { /*Test$8*/\n public void paramDo() {\n System.out.println(\"Test$8\");\n }\n };\n }\n \n public static void main(String[] args) {\n Test t1 = new Test(1);\n t1.bar();\n Test t2 = new Test(123);\n t2.bar();\n t1.foo(t2);\n t1.bar();\n Implementor imp = new Implementor();\n imp.act();\n t1.anon();\n }\n public static class Outer {\n public static interface Inner {\n public void innerDo();\n }\n public static interface InnerParam<T> {\n public void innerParam(T t);\n }\n public class Middle<T> {\n T t;\n public abstract class Innerst {\n public abstract void innerstDo();\n }\n \n Innerst i = new Outer.Middle.Innerst() { /*Test$Outer$Middle$1*/\n public void innerstDo() {\n System.out.println(\"Test$Outer$Middle$1\");\n }\n };\n }\n }\n \n public void anonDotTest() {\n Outer.Inner test = new Outer.Inner() { /*Test$9*/\n public void innerDo() {\n System.out.println(\"Test$9\");\n }\n };\n Outer.InnerParam<String> test2 = new Outer.InnerParam<String>() { /*Test$10*/\n public void innerParam(String t) {\n System.out.println(\"Test$10\");\n }\n };\n }\n}\n\nclass Foo {\n public void foo() {\n System.out.println(\"foo\");\n FooImplementor fimp = new FooImplementor();\n fimp.act();\n }\n \n static interface FooInterf {\n static long C = System.currentTimeMillis(); /*Foo$FooInterf*/\n public void act();\n }\n \n public static class FooImplementor implements FooInterf { /*Foo$FooImplementor*/\n public void act() {\n System.out.println(C); /*b-Foo$FooImplementor*/\n FooInterf inter = new FooInterf() { /*Foo$FooImplementor$1*/\n public void act() {\n System.out.println(\"Foo$FooImplementor$1\");\n FooInterf inter = new FooInterf() { /*Foo$FooImplementor$1$1*/\n public void act() {\n System.out.println(\"Foo$FooImplementor$1$1\");\n }\n };\n }\n };\n }\n public class Inner<T> { /*Foo$FooImplementor$Inner*/\n T t;\n }\n }\n}\nabstract class Fee {\n public abstract void feeDo();\n public abstract void feeAct();\n protected String s, t, u;\n \n public static class FeeConc extends Fee {/*Fee$FeeConc*/\n {\n s = \"FeeConc/s\";\n }\n public void feeDo() { System.out.println(\"FeeConc/feeDo\"); }\n {\n t = \"FeeConc/t\";\n }\n public abstract void feeAct() { System.out.println(\"FeeConc/feeAct\"); }\n {\n u = \"FeeConc/u\";\n }\n }\n \n public static void main(String[] args) {\n Fee f = new Fee() {/*Fee$1*/\n {\n s = \"Fee$1/s\";\n }\n public void feeDo() { System.out.println(\"Fee$1/feeDo\"); }\n {\n t = \"Fee$1/t\";\n }\n public abstract void feeAct() { System.out.println(\"Fee$1/feeAct\"); }\n {\n u = \"Fee$1/u\";\n }\n };\n }\n}/*eof*/\n" |
protected final String |
NEWLINE |
"\n" |
protected final String |
PUBLIC_CEI_TEXT |
"/*bof*/package temp;\n\npublic class C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\nenum E { }\ninterface I { }\n}\n" |
protected final String |
PUBLIC_CIE_TEXT |
"/*bof*/package temp;\n\npublic class C {\n public static interface NestedI { }\n public static enum NestedE { }\n}\ninterface I { }\nenum E { }\n}\n" |
protected final String |
PUBLIC_ECI_TEXT |
"/*bof*/package temp;\n\npublic enum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\nclass C { }\ninterface I { }\n}\n" |
protected final String |
PUBLIC_EIC_TEXT |
"/*bof*/package temp;\n\npublic enum E {\n public static class NestedC { }\n public static interface NestedI { }\n}\ninterface I { }\nclass C { }\n}\n" |
protected final String |
PUBLIC_ICE_TEXT |
"/*bof*/package temp;\n\npublic interface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nclass C { }\nenum E { }\n}\n" |
protected final String |
PUBLIC_IEC_TEXT |
"/*bof*/package temp;\n\npublic interface I {\n public static class NestedC { }\n public static enum NestedE { }\n}\nenum E { }\nclass C { }\n}\n" |
edu.rice.cs.drjava.model.definitions.indent.IndentRulesTestCase | ||
---|---|---|
public static final int |
TEST_INDENT_LEVEL |
2 |
edu.rice.cs.drjava.model.definitions.indent.IndentRuleWithTrace | ||
---|---|---|
public static final String |
NO |
"No" |
public static final String |
TERMINUS_RULE |
"" |
public static final String |
YES |
"Yes" |
edu.rice.cs.drjava.model.definitions.reducedmodel.AbstractReducedModel | ||
---|---|---|
public static final char |
PTR_CHAR |
35 |
edu.rice.cs.drjava.model.definitions.reducedmodel.BraceInfo | ||
---|---|---|
public static final String |
NONE |
"" |
public static final String |
OPEN_BRACKET |
"[" |
public static final String |
OPEN_CURLY |
"{" |
public static final String |
OPEN_PAREN |
"(" |
edu.rice.cs.drjava.model.definitions.reducedmodel.HighlightStatus | ||
---|---|---|
public static final int |
COMMENTED |
1 |
public static final int |
DOUBLE_QUOTED |
3 |
public static final int |
KEYWORD |
4 |
public static final int |
NORMAL |
0 |
public static final int |
NUMBER |
5 |
public static final int |
SINGLE_QUOTED |
2 |
public static final int |
TYPE |
6 |
edu.rice.cs.drjava.model.definitions.reducedmodel.IndentInfo | ||
---|---|---|
public static final String |
NONE |
"" |
public static final String |
OPEN_BRACKET |
"[" |
public static final String |
OPEN_CURLY |
"{" |
public static final String |
OPEN_PAREN |
"(" |
edu.rice.cs.drjava.model.javadoc.JavadocModel | ||
---|---|---|
public static final String |
SUGGESTED_DIR_NAME |
"doc" |
edu.rice.cs.drjava.model.repl.History | ||
---|---|---|
public static final String |
INTERACTION_SEPARATOR |
"//End of Interaction//" |
edu.rice.cs.drjava.model.repl.InteractionsDocument | ||
---|---|---|
public static final String |
CHARACTER_RETURN_STYLE |
"character.return.style" |
public static final String |
DEBUGGER_STYLE |
"debugger" |
public static final String |
DEFAULT_PROMPT |
"> " |
public static final String |
ERROR_STYLE |
"error" |
public static final String |
NUMBER_RETURN_STYLE |
"number.return.style" |
public static final String |
OBJECT_RETURN_STYLE |
"object.return.style" |
public static final String |
STRING_RETURN_STYLE |
"string.return.style" |
edu.rice.cs.drjava.model.repl.InteractionsModel | ||
---|---|---|
public static final String |
BANNER_PREFIX |
"Welcome to DrJava." |
edu.rice.cs.drjava.model.repl.newjvm.MainJVM | ||
---|---|---|
public static final String |
DEFAULT_INTERPRETER_NAME |
"DEFAULT" |
edu.rice.cs.drjava.plugins.eclipse.DrJavaConstants | ||
---|---|---|
public static final String |
ALLOW_PRIVATE_ACCESS |
"allow.private.access" |
public static final String |
FONT_MAIN |
"edu.rice.cs.drjava.InteractionsFont" |
public static final String |
HISTORY_MAX_SIZE |
"history.max.size" |
public static final String |
INTERACTIONS_EXIT_PROMPT |
"interactions.exit.prompt" |
public static final String |
INTERACTIONS_RESET_PROMPT |
"interactions.reset.prompt" |
public static final String |
JVM_ARGS |
"jvm.args" |
edu.rice.cs.drjava.plugins.eclipse.EclipsePlugin | ||
---|---|---|
public static final String |
PLUGIN_ID |
"edu.rice.cs.drjava" |
edu.rice.cs.drjava.plugins.eclipse.repl.EclipseInteractionsModel | ||
---|---|---|
protected static final int |
HISTORY_SIZE |
1000 |
protected static final int |
WRITE_DELAY |
50 |
edu.rice.cs.drjava.plugins.eclipse.views.InteractionsController | ||
---|---|---|
protected static final String |
INPUT_ENTERED_NAME |
"Input Entered" |
protected static final String |
INSERT_NEWLINE_NAME |
"Insert Newline" |
edu.rice.cs.drjava.ui.AboutDialog | ||
---|---|---|
public static final String |
COPYRIGHT |
"Copyright (c) 2001-2007, JavaPLT group at Rice University (javaplt@rice.edu)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution.\n* Neither the names of DrJava, the JavaPLT group, Rice University, nor thenames of its contributors may be used to endorse or promote productsderived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOTLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FORA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER ORCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, ORPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OFLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDINGNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THISSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThis software is Open Source Initiative approved Open Source Software.\nOpen Source Initative Approved is a trademark of the Open Source Initiative.\n" |
public static final String |
DYADE_LICENSE |
"DynamicJava - Copyright \u00a9 1999 Dyade\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL DYADE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nExcept as contained in this notice, the name of Dyade shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Dyade." |
public static final String |
INTRODUCTION |
"DrJava is a pedagogic programming environment for Java, intended to help students focus more on program design than on the features of a complicated development environment. It provides an Interactions window based on a \"read-eval-print loop\", which allows programmers to develop, test, and debug Java programs in an interactive, incremental fashion.\n\nHome Page: http://www.drjava.org\nPaper: http://drjava.sf.net/papers/drjava-paper.shtml" |
edu.rice.cs.drjava.ui.DefinitionsPane | ||
---|---|---|
public static final String |
INDENT_KEYMAP_NAME |
"INDENT_KEYMAP" |
edu.rice.cs.drjava.ui.DrJavaErrorWindow | ||
---|---|---|
public static final String |
SF_ADD_BUG_URL |
"http://sourceforge.net/tracker/?func=add&group_id=44253&atid=438935/" |
public static final String |
SF_LINK_NAME |
"http://sourceforge.net/projects/drjava" |
edu.rice.cs.drjava.ui.ExecuteExternalDialog | ||
---|---|---|
public static final String |
STALE_TOOLTIP |
"<html>Note: Values of variables might not be current for<br>performance reasons. They will be current when executed.</html>" |
edu.rice.cs.drjava.ui.ExternalProcessPanel | ||
---|---|---|
public final int |
BUFFER_READS_PER_TIMER |
5 |
public final int |
BUFFER_SIZE |
10240 |
edu.rice.cs.drjava.ui.HelpFrame | ||
---|---|---|
protected static final String |
CONTENTS_PAGE |
"index.html" |
protected static final String |
HOME_PAGE |
"intro.html" |
protected static final String |
ICON |
"DrJavaHelp.png" |
edu.rice.cs.drjava.ui.InteractionsController | ||
---|---|---|
public static final String |
INPUT_BOX_STYLE |
"input.box.style" |
public static final String |
INPUT_BOX_SYMBOL |
"[DrJava Input Box]" |
edu.rice.cs.drjava.ui.InteractionsHistoryFilter | ||
---|---|---|
public static final String |
HIST_EXTENSION |
"hist" |
edu.rice.cs.drjava.ui.JarOptionsDialog | ||
---|---|---|
public static final int |
JAR_CLASSES |
1 |
public static final int |
JAR_SOURCES |
2 |
public static final int |
MAKE_EXECUTABLE |
4 |
edu.rice.cs.drjava.ui.LessPanel | ||
---|---|---|
public final int |
BUFFER_READS_PER_TIMER |
5 |
public final int |
BUFFER_SIZE |
10240 |
edu.rice.cs.drjava.ui.RecentFileManagerTest | ||
---|---|---|
protected static final String |
BAR_TEXT |
"class DrJavaTestBar {}" |
protected static final String |
FOO_TEXT |
"class DrJavaTestFoo {}" |
edu.rice.cs.drjava.ui.config.ConfigFrame | ||
---|---|---|
protected final String |
SEPS |
" \t\n-,;.(" |
edu.rice.cs.drjava.ui.config.ToolbarOptionComponent | ||
---|---|---|
public static final String |
ICONS_ONLY |
"icons only" |
public static final String |
NONE |
"none" |
public static final String |
TEXT_AND_ICONS |
"text and icons" |
public static final String |
TEXT_ONLY |
"text only" |
edu.rice.cs.drjava.ui.config.VectorOptionComponent<T> | ||
---|---|---|
protected static final int |
NUM_ROWS |
5 |
protected static final int |
PIXELS_PER_ROW |
18 |
edu.rice.cs.util.FileOpsTest | ||
---|---|---|
public static final String |
PREFIX |
"prefix" |
public static final String |
SUFFIX |
".suffix" |
public static final String |
TEXT |
"hi, dude." |
edu.rice.cs.util.Log | ||
---|---|---|
public static final boolean |
ENABLE_ALL |
false |
edu.rice.cs.util.LogTest | ||
---|---|---|
public static final int |
TOL |
2000 |
edu.rice.cs.util.ProcessChain | ||
---|---|---|
public static final char |
PIPE_SEPARATOR_CHAR |
124 |
public static final char |
PROCESS_SEPARATOR_CHAR |
35 |
edu.rice.cs.util.StringOps | ||
---|---|---|
public static final char |
newline |
10 |
public static final String |
NEWLINE |
"\n" |
public static final char |
SEPARATOR |
8718 |
edu.rice.cs.util.docnavigation.IDocumentNavigator<ItemT extends INavigatorItem> | ||
---|---|---|
public static final String |
MODEL_INITIATED_PROPERTY_NAME |
"ModelInitiated" |
edu.rice.cs.util.docnavigation.JTreeSortNavigatorTest | ||
---|---|---|
protected final String |
EXTERNAL_BIN_NAME |
"[ External Files ]" |
protected final String |
SOURCE_BIN_NAME |
"[ Source Files ]" |
edu.rice.cs.util.newjvm.AbstractSlaveJVM | ||
---|---|---|
public static final int |
CHECK_MAIN_VM_ALIVE_SECONDS |
1 |
edu.rice.cs.util.newjvm.SlaveJVMRunner | ||
---|---|---|
public static final boolean |
SHOW_DEBUG_DIALOGS |
false |
edu.rice.cs.util.swing.DirectorySelectorComponent | ||
---|---|---|
public static final float |
DEFAULT_FONT_SIZE |
10.0f |
public static final int |
DEFAULT_NUM_COLS |
30 |
edu.rice.cs.util.swing.FileSelectorComponent | ||
---|---|---|
public static final float |
DEFAULT_FONT_SIZE |
10.0f |
public static final int |
DEFAULT_NUM_COLS |
30 |
edu.rice.cs.util.swing.FileSelectorStringComponent | ||
---|---|---|
public static final float |
DEFAULT_FONT_SIZE |
10.0f |
public static final int |
DEFAULT_NUM_COLS |
30 |
edu.rice.cs.util.swing.ScrollableDialog | ||
---|---|---|
public static final int |
DEFAULT_HEIGHT |
400 |
public static final int |
DEFAULT_WIDTH |
500 |
edu.rice.cs.util.swing.Utilities | ||
---|---|---|
public static final String |
JGOODIES_PACKAGE |
"com.jgoodies.looks" |
edu.rice.cs.util.text.ConsoleDocument | ||
---|---|---|
public static final String |
DEFAULT_CONSOLE_PROMPT |
"" |
public static final String |
DEFAULT_STYLE |
"default" |
public static final String |
SYSTEM_ERR_STYLE |
"System.err" |
public static final String |
SYSTEM_IN_STYLE |
"System.in" |
public static final String |
SYSTEM_OUT_STYLE |
"System.out" |
edu.rice.cs.util.text.ReadersWritersLocking | ||
---|---|---|
public static final int |
UNREADLOCKED |
0 |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |