diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-05 22:01:51 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-05 22:01:51 +0200 |
commit | 7dd061c263803dadefe244bcc78a67f4d12bd42e (patch) | |
tree | f8d9284cc556cf4e5923208a789c2cfdb988fe4c /src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java | |
parent | a9fe617303f9726794451eaf2c517a8ec57f3faf (diff) | |
download | lombok-7dd061c263803dadefe244bcc78a67f4d12bd42e.tar.gz lombok-7dd061c263803dadefe244bcc78a67f4d12bd42e.tar.bz2 lombok-7dd061c263803dadefe244bcc78a67f4d12bd42e.zip |
More documentation.
Diffstat (limited to 'src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java')
-rw-r--r-- | src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java b/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java index 9220c790..02cc533d 100644 --- a/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java +++ b/src_eclipseagent/lombok/eclipse/agent/EclipsePatcher.java @@ -1,3 +1,24 @@ +/* + * Copyright © 2009 Reinier Zwitserloot and Roel Spilker. + * + * Permission 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: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE 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 THE + * AUTHORS OR COPYRIGHT HOLDERS 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. + */ package lombok.eclipse.agent; import java.io.File; @@ -16,6 +37,13 @@ import java.util.jar.JarFile; import java.util.regex.Matcher; import java.util.regex.Pattern; +/** + * This is a java-agent that patches some of eclipse's classes so AST Nodes are handed off to Lombok + * for modification before Eclipse actually uses them to compile, render errors, show code outlines, + * create auto-completion dialogs, and anything else eclipse does with java code. See the *Transformer + * classes in this package for more information about which classes are transformed and how they are + * transformed. + */ public class EclipsePatcher { private EclipsePatcher() {} @@ -68,8 +96,6 @@ public class EclipsePatcher { private static void addLombokToSearchPaths(Instrumentation instrumentation) throws Exception { String path = findPathOfOurClassloader(); //On java 1.5, you don't have these methods, so you'll be forced to manually -Xbootclasspath/a them in. -// instrumentation.appendToSystemClassLoaderSearch(new JarFile(path + "/lombok.jar")); -// instrumentation.appendToBootstrapClassLoaderSearch(new JarFile(path + "/lombok.eclipse.agent.jar")); tryCallMethod(instrumentation, "appendToSystemClassLoaderSearch", path + "/lombok.jar"); tryCallMethod(instrumentation, "appendToBootstrapClassLoaderSearch", path + "/lombok.eclipse.agent.jar"); } |