Code Search for Developers
 
 
  

readme.txt from DrJava at Krugle


Show readme.txt syntax highlighted

Platform-specific Classes

The sources here require certain platform-specific libraries in order to compile.  Because they cannot all be built at once, the class files must be stored under source control along with the sources.  The location of required platform libraries is communicated to the Ant script via environment variables.  The specific purposes and dependencies of each set of classes is as follows:

jdk14:  A compiler adapter for the javac compiler, version 1.4.  Must be compiled against the Sun compiler libraries, as distributed with the J2SE SDK version 1.4.3. (TODO: Are other versions, such as 1.4.1, sufficient?)

jdk15:  A compiler adapter for the javac compiler, version 5, and the prototype JSR-14 compiler, version 2.0+.  Must be compiled against the Sun compiler libraries, as distributed with the JDK version 5.0+ (or a compatible JSR-14 distribution).

jdk16:  A compiler adapter for the javac compiler, version 6+.  Must be compiled against the Sun compiler libraries, as distributed with the JDK version 6.0+.

mac:  A platform adapter for Mac OS X with Java version 1.4 or later.  Must be compiled against the com.apple.eawt classes, as distributed with Apple's Java implementation, version 1.4 or later.

windows:  A platform adapter for Windows.  Currently has no platform-specific dependencies, but is placed here in case the need arises.




See more files for this project here

DrJava

DrJava is a lightweight programming environment for Java designed to foster test-driven software development. It includes an intelligent program editor, an interactions pane for evaluating program text, a source level debugger, and a unit testing tool.

Project homepage: http://sourceforge.net/projects/drjava
Programming language(s): Java
License: other

  classes/
    base-jdk14/
      edu/
        rice/
          cs/
            drjava/
              model/
                compiler/
                  Javac141Compiler$1.class
                  Javac141Compiler$OurLog.class
                  Javac141Compiler.class
    base-jdk15/
      edu/
        rice/
          cs/
            drjava/
              model/
                compiler/
                  Javac150Compiler$1.class
                  Javac150Compiler$OurLog.class
                  Javac150Compiler.class
    base-jdk16/
      edu/
        rice/
          cs/
            drjava/
              model/
                compiler/
                  Javac160Compiler$1.class
                  Javac160Compiler$CompilerErrorListener.class
                  Javac160Compiler.class
    base-mac/
      edu/
        rice/
          cs/
            drjava/
              platform/
                MacPlatform$1$1.class
                MacPlatform$1.class
                MacPlatform.class
    base-windows/
      edu/
        rice/
          cs/
            drjava/
              platform/
                WindowsPlatform.class
  lib/
    buildlib/
      ant-contrib.jar
      cenquatasks.jar
      junit.jar
    readme.txt
  src-jdk14/
    edu/
      rice/
        cs/
          drjava/
            model/
              compiler/
                Javac141Compiler.java
  src-jdk15/
    edu/
      rice/
        cs/
          drjava/
            model/
              compiler/
                Javac150Compiler.java
                Javac150CompilerTest.java
  src-jdk16/
    edu/
      rice/
        cs/
          drjava/
            model/
              compiler/
                Javac160Compiler.java
                Javac160CompilerTest.java
  src-mac/
    edu/
      rice/
        cs/
          drjava/
            platform/
              MacFactoryTest.java
              MacPlatform.java
  src-windows/
    edu/
      rice/
        cs/
          drjava/
            platform/
              WindowsPlatform.java
  testFiles/
    IterableTest.java
  build.xml
  readme.txt