diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-08 23:44:43 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-08 23:44:43 +0200 |
commit | f6778b0426d86c8f6bc23b0e3bb7617eb7a08709 (patch) | |
tree | 8e5647eba4ef23350fdd7d2e6079a8711ae5e4e6 /src/lombok/eclipse/TransformEclipseAST.java | |
parent | 8534a8e0a552f21ad6479e94fad8db36e67d44d5 (diff) | |
download | lombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.tar.gz lombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.tar.bz2 lombok-f6778b0426d86c8f6bc23b0e3bb7617eb7a08709.zip |
Renamed all true names of 'eclipse' to 'Eclipse' (but not the eclipse package, of course),
and fixed a showstopper bug in the installer that would add -javaagent:lombok.jar to
eclipse.ini, which is wrong of course; it needs to be lombok.eclipse.agent.jar.
Diffstat (limited to 'src/lombok/eclipse/TransformEclipseAST.java')
-rw-r--r-- | src/lombok/eclipse/TransformEclipseAST.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lombok/eclipse/TransformEclipseAST.java b/src/lombok/eclipse/TransformEclipseAST.java index f7a4c715..ff40c110 100644 --- a/src/lombok/eclipse/TransformEclipseAST.java +++ b/src/lombok/eclipse/TransformEclipseAST.java @@ -36,10 +36,10 @@ import org.eclipse.jdt.internal.compiler.parser.Parser; /** * Entry point for the Eclipse Parser patch that lets lombok modify the Abstract Syntax Tree as generated by - * eclipse's parser implementations. This class is injected into the appropriate OSGi ClassLoader and can thus + * Eclipse's parser implementations. This class is injected into the appropriate OSGi ClassLoader and can thus * use any classes that belong to org.eclipse.jdt.(apt.)core. * - * Note that, for any Method body, if Bit24 is set, the eclipse parser has been patched to never attempt to + * Note that, for any Method body, if Bit24 is set, the Eclipse parser has been patched to never attempt to * (re)parse it. You should set Bit24 on any MethodDeclaration object you inject into the AST: * * <code>methodDeclaration.bits |= ASTNode.Bit24; //0x800000</code> @@ -70,14 +70,14 @@ public class TransformEclipseAST { } /** - * This method is called immediately after eclipse finishes building a CompilationUnitDeclaration, which is - * the top-level AST node when eclipse parses a source file. The signature is 'magic' - you should not + * This method is called immediately after Eclipse finishes building a CompilationUnitDeclaration, which is + * the top-level AST node when Eclipse parses a source file. The signature is 'magic' - you should not * change it! * * Eclipse's parsers often operate in diet mode, which means many parts of the AST have been left blank. * Be ready to deal with just about anything being null, such as the Statement[] arrays of the Method AST nodes. * - * @param parser The eclipse parser object that generated the AST. + * @param parser The Eclipse parser object that generated the AST. * @param ast The AST node belonging to the compilation unit (java speak for a single source file). */ public static void transform(Parser parser, CompilationUnitDeclaration ast) { |