Providing a GWT written Widget as JS library

165 views
Skip to first unread message

Axel Kittenberger

unread,
Jan 30, 2008, 9:04:51 AM1/30/08
to Google Web Toolkit
Hello list,

I have following usecase: I wrote a nice Widget written in GWT
( http://code.google.com/p/axed/ ), and want to allow people to use
it without having to write their web application in GWT. That after
including the GWT compiled js code, using the JSNI providing a set of
JS native functions they can call to instance the widget, control it
etc.

That is my code has no entry point! While the compiler complain about
missing entrypoint can be helped by making an empty one. It does not
include any source, because it isn't referenced!

I don't know how good the deadcode elimator works now, and how good it
will work in future. So how can I guarantee code to be included into
the compiled script, altough nothing (except the GWT internal
initalisations) it is to be executed at module load time.

(Of course for development I use a complete GWT application to debug,
and also like GWT myself, but just like e.g. Google Maps I want to
allow users not to have to do GWT to use the widget in their code)

Thanks! -- Axel

Axel Kittenberger

unread,
Jan 30, 2008, 9:26:16 AM1/30/08
to Google Web Toolkit
Oh please forgive me my bad grammar, I'm very tired :-(

On Jan 30, 3:04 pm, Axel Kittenberger <axe...@gmail.com> wrote:
> Hello list,
>
> I have following usecase: I wrote a nice Widget written in GWT
> (http://code.google.com/p/axed/), and want to allow people to use

krispy

unread,
Jan 30, 2008, 9:47:50 AM1/30/08
to Google Web Toolkit
Have you seen Ray Cromwell's Exporter?

http://code.google.com/p/gwt-exporter/

-krispy

Axel Kittenberger

unread,
Jan 30, 2008, 10:03:20 AM1/30/08
to Google Web Toolkit
No, many thanks! Seems to answer all my questions :-)

Axel Kittenberger

unread,
Jan 30, 2008, 10:12:42 AM1/30/08
to Google Web Toolkit
Altough this project seems yet not to be too ready :-(

Missing documentation, missing download files etc.

Fred Sauer

unread,
Jan 30, 2008, 10:59:00 AM1/30/08
to Google-We...@googlegroups.com, Ray Cromwell
Axel,

There is source code:
  http://gwt-exporter.googlecode.com/svn/trunk/
--
Fred Sauer
fr...@allen-sauer.com

Axel Kittenberger

unread,
Jan 30, 2008, 11:27:11 AM1/30/08
to Google Web Toolkit
Tried it! Altough I fail with:

-------------------------------------------------------------------------------------------------------------------
Loading module 'org.axed.user.AxedLib'
Loading inherited module 'org.timepedia.exporter.Exporter'
[ERROR] Unable to load class
'org.timepedia.exporter.rebind.ExporterGenerator'
java.lang.ClassNotFoundException:
org.timepedia.exporter.rebind.ExporterGenerator
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
-------------------------------------------------------------------------------------------------------------------

And I have no idea what I did wrong, I have said class exactly at
$GWTPATH/src/org/timepedia/exporter/rebind/ExporterGenerator
> f...@allen-sauer.com

Fred Sauer

unread,
Jan 30, 2008, 11:34:02 AM1/30/08
to Google-We...@googlegroups.com, Ray Cromwell
Looks like the 'src' directory is not in your classpath.

Axel Kittenberger

unread,
Jan 30, 2008, 11:37:41 AM1/30/08
to Google Web Toolkit
Hmm I think It is

---------'./AxedLib-compile'-----------
APPDIR=`dirname $0`;
GWTDIR=`dirname $0`;
java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-
dev-linux.jar:$GWTDIR/gwt-log-1.4.5.jar"
com.google.gwt.dev.GWTCompiler -out "$APPDIR/www" "$@"
org.axed.user.AxedLib;
--------------------
> --
> Fred Sauer
> f...@allen-sauer.com

Fred Sauer

unread,
Jan 30, 2008, 11:42:14 AM1/30/08
to Google-We...@googlegroups.com
You said the class was here:
  $GWTPATH/src/org/timepedia/exporter/rebind/ExporterGenerator

which means, you need to have on the classpath:
  $GWTPATH/src
--
Fred Sauer
fr...@allen-sauer.com

Axel Kittenberger

unread,
Jan 30, 2008, 11:46:19 AM1/30/08
to Google Web Toolkit
Thanks for you efforts, but I really must overlook something.
I have $APPDIR/src in -cp, where $APPDIR is set to the caller scripts
dir. I have all my normal application in src also, which GWT default
in the ./ApplicationCreator
> f...@allen-sauer.com

Fred Sauer

unread,
Jan 30, 2008, 11:47:49 AM1/30/08
to Google-We...@googlegroups.com
Try "java -verbose:class ..." so see what's going on.

Axel Kittenberger

unread,
Jan 30, 2008, 11:57:09 AM1/30/08
to Google Web Toolkit
I hope I don't break the format here... Doesn't look especially
extraordinary to me..
---

[Opened /usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/rt.jar]
[Opened /usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/jsse.jar]
[Opened /usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/jce.jar]
[Opened /usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/charsets.jar]
[Loaded java.lang.Object from shared objects file]
[Loaded java.io.Serializable from shared objects file]
[Loaded java.lang.Comparable from shared objects file]
[Loaded java.lang.CharSequence from shared objects file]
[Loaded java.lang.String from shared objects file]
[Loaded java.lang.reflect.GenericDeclaration from shared objects file]
[Loaded java.lang.reflect.Type from shared objects file]
[Loaded java.lang.reflect.AnnotatedElement from shared objects file]
[Loaded java.lang.Class from shared objects file]
[Loaded java.lang.Cloneable from shared objects file]
[Loaded java.lang.ClassLoader from shared objects file]
[Loaded java.lang.System from shared objects file]
[Loaded java.lang.Throwable from shared objects file]
[Loaded java.lang.Error from shared objects file]
[Loaded java.lang.ThreadDeath from shared objects file]
[Loaded java.lang.Exception from shared objects file]
[Loaded java.lang.RuntimeException from shared objects file]
[Loaded java.security.ProtectionDomain from shared objects file]
[Loaded java.security.AccessControlContext from shared objects file]
[Loaded java.lang.ClassNotFoundException from shared objects file]
[Loaded java.lang.LinkageError from shared objects file]
[Loaded java.lang.NoClassDefFoundError from shared objects file]
[Loaded java.lang.ClassCastException from shared objects file]
[Loaded java.lang.ArrayStoreException from shared objects file]
[Loaded java.lang.VirtualMachineError from shared objects file]
[Loaded java.lang.OutOfMemoryError from shared objects file]
[Loaded java.lang.StackOverflowError from shared objects file]
[Loaded java.lang.ref.Reference from shared objects file]
[Loaded java.lang.ref.SoftReference from shared objects file]
[Loaded java.lang.ref.WeakReference from shared objects file]
[Loaded java.lang.ref.FinalReference from shared objects file]
[Loaded java.lang.ref.PhantomReference from shared objects file]
[Loaded java.lang.ref.Finalizer from shared objects file]
[Loaded java.lang.Runnable from shared objects file]
[Loaded java.lang.Thread from shared objects file]
[Loaded java.lang.Thread$UncaughtExceptionHandler from shared objects
file]
[Loaded java.lang.ThreadGroup from shared objects file]
[Loaded java.util.Dictionary from shared objects file]
[Loaded java.util.Map from shared objects file]
[Loaded java.util.Hashtable from shared objects file]
[Loaded java.util.Properties from shared objects file]
[Loaded java.lang.reflect.AccessibleObject from shared objects file]
[Loaded java.lang.reflect.Member from shared objects file]
[Loaded java.lang.reflect.Field from shared objects file]
[Loaded java.lang.reflect.Method from shared objects file]
[Loaded java.lang.reflect.Constructor from shared objects file]
[Loaded sun.reflect.MagicAccessorImpl from shared objects file]
[Loaded sun.reflect.MethodAccessor from shared objects file]
[Loaded sun.reflect.MethodAccessorImpl from shared objects file]
[Loaded sun.reflect.ConstructorAccessor from shared objects file]
[Loaded sun.reflect.ConstructorAccessorImpl from shared objects file]
[Loaded sun.reflect.DelegatingClassLoader from shared objects file]
[Loaded sun.reflect.ConstantPool from shared objects file]
[Loaded java.lang.Iterable from shared objects file]
[Loaded java.util.Collection from shared objects file]
[Loaded java.util.AbstractCollection from shared objects file]
[Loaded java.util.List from shared objects file]
[Loaded java.util.AbstractList from shared objects file]
[Loaded java.util.RandomAccess from shared objects file]
[Loaded java.util.Vector from shared objects file]
[Loaded java.lang.Appendable from shared objects file]
[Loaded java.lang.AbstractStringBuilder from shared objects file]
[Loaded java.lang.StringBuffer from shared objects file]
[Loaded java.lang.StackTraceElement from shared objects file]
[Loaded java.nio.Buffer from shared objects file]
[Loaded sun.misc.AtomicLong from shared objects file]
[Loaded sun.misc.AtomicLongCSImpl from shared objects file]
[Loaded java.lang.Boolean from shared objects file]
[Loaded java.lang.Character from shared objects file]
[Loaded java.lang.Number from shared objects file]
[Loaded java.lang.Float from shared objects file]
[Loaded java.lang.Double from shared objects file]
[Loaded java.lang.Byte from shared objects file]
[Loaded java.lang.Short from shared objects file]
[Loaded java.lang.Integer from shared objects file]
[Loaded java.lang.Long from shared objects file]
[Loaded java.lang.management.MemoryUsage from shared objects file]
[Loaded java.lang.StrictMath from shared objects file]
[Loaded java.io.ObjectStreamField from shared objects file]
[Loaded java.util.Comparator from shared objects file]
[Loaded java.lang.String$CaseInsensitiveComparator from shared objects
file]
[Loaded java.security.Guard from shared objects file]
[Loaded java.security.Permission from shared objects file]
[Loaded java.security.BasicPermission from shared objects file]
[Loaded java.lang.RuntimePermission from shared objects file]
[Loaded java.util.AbstractMap from shared objects file]
[Loaded sun.misc.SoftCache from shared objects file]
[Loaded java.lang.ref.ReferenceQueue from shared objects file]
[Loaded java.lang.ref.ReferenceQueue$Null from shared objects file]
[Loaded java.lang.ref.ReferenceQueue$Lock from shared objects file]
[Loaded java.util.HashMap from shared objects file]
[Loaded java.io.ObjectStreamClass from shared objects file]
[Loaded java.security.PrivilegedAction from shared objects file]
[Loaded sun.reflect.ReflectionFactory$GetReflectionFactoryAction from
shared objects file]
[Loaded java.security.AccessController from shared objects file]
[Loaded java.util.Stack from shared objects file]
[Loaded sun.reflect.ReflectionFactory from shared objects file]
[Loaded java.lang.IncompatibleClassChangeError from shared objects
file]
[Loaded java.lang.NoSuchMethodError from shared objects file]
[Loaded java.lang.annotation.Annotation from shared objects file]
[Loaded java.util.Map$Entry from shared objects file]
[Loaded java.util.HashMap$Entry from shared objects file]
[Loaded java.lang.reflect.ReflectPermission from shared objects file]
[Loaded java.lang.ref.Reference$Lock from shared objects file]
[Loaded java.lang.ref.Reference$ReferenceHandler from shared objects
file]
[Loaded java.lang.ref.Finalizer$FinalizerThread from shared objects
file]
[Loaded java.util.Enumeration from shared objects file]
[Loaded java.util.Hashtable$EmptyEnumerator from shared objects file]
[Loaded java.util.Iterator from shared objects file]
[Loaded java.util.Hashtable$EmptyIterator from shared objects file]
[Loaded java.util.Hashtable$Entry from shared objects file]
[Loaded java.nio.charset.Charset from shared objects file]
[Loaded java.nio.charset.spi.CharsetProvider from shared objects file]
[Loaded sun.nio.cs.FastCharsetProvider from shared objects file]
[Loaded sun.nio.cs.StandardCharsets from shared objects file]
[Loaded sun.util.PreHashedMap from shared objects file]
[Loaded sun.nio.cs.StandardCharsets$Aliases from shared objects file]
[Loaded sun.nio.cs.StandardCharsets$Classes from shared objects file]
[Loaded sun.nio.cs.StandardCharsets$Cache from shared objects file]
[Loaded java.lang.ThreadLocal from shared objects file]
[Loaded java.lang.StringBuilder from shared objects file]
[Loaded sun.nio.cs.HistoricallyNamedCharset from shared objects file]
[Loaded sun.nio.cs.UTF_8 from shared objects file]
[Loaded java.lang.Class$3 from shared objects file]
[Loaded java.lang.reflect.Modifier from shared objects file]
[Loaded sun.reflect.LangReflectAccess from shared objects file]
[Loaded java.lang.reflect.ReflectAccess from shared objects file]
[Loaded java.lang.Class$1 from shared objects file]
[Loaded sun.reflect.Reflection from shared objects file]
[Loaded java.util.Collections from shared objects file]
[Loaded java.util.Random from shared objects file]
[Loaded java.util.concurrent.atomic.AtomicLong from shared objects
file]
[Loaded sun.misc.Unsafe from shared objects file]
[Loaded java.util.Set from shared objects file]
[Loaded java.util.AbstractSet from shared objects file]
[Loaded java.util.Collections$EmptySet from shared objects file]
[Loaded java.util.Collections$EmptyList from shared objects file]
[Loaded java.util.Collections$EmptyMap from shared objects file]
[Loaded java.util.Collections$ReverseComparator from shared objects
file]
[Loaded java.util.Collections$SynchronizedMap from shared objects
file]
[Loaded sun.reflect.ReflectionFactory$1 from shared objects file]
[Loaded sun.reflect.NativeConstructorAccessorImpl from shared objects
file]
[Loaded sun.reflect.DelegatingConstructorAccessorImpl from shared
objects file]
[Loaded sun.misc.VM from shared objects file]
[Loaded java.lang.StringCoding from shared objects file]
[Loaded java.lang.ThreadLocal$ThreadLocalMap from shared objects file]
[Loaded java.lang.ThreadLocal$ThreadLocalMap$Entry from shared objects
file]
[Loaded java.lang.StringCoding$StringDecoder from shared objects file]
[Loaded java.lang.StringCoding$CharsetSD from shared objects file]
[Loaded java.nio.charset.CharsetDecoder from shared objects file]
[Loaded sun.nio.cs.UTF_8$Decoder from shared objects file]
[Loaded java.nio.charset.CodingErrorAction from shared objects file]
[Loaded sun.nio.cs.Surrogate$Generator from shared objects file]
[Loaded sun.nio.cs.Surrogate from shared objects file]
[Loaded java.nio.charset.CoderResult from shared objects file]
[Loaded java.nio.charset.CoderResult$Cache from shared objects file]
[Loaded java.nio.charset.CoderResult$1 from shared objects file]
[Loaded java.nio.charset.CoderResult$2 from shared objects file]
[Loaded java.nio.ByteBuffer from shared objects file]
[Loaded java.nio.HeapByteBuffer from shared objects file]
[Loaded java.nio.Bits from shared objects file]
[Loaded java.nio.ByteOrder from shared objects file]
[Loaded java.lang.Readable from shared objects file]
[Loaded java.nio.CharBuffer from shared objects file]
[Loaded java.nio.HeapCharBuffer from shared objects file]
[Loaded sun.misc.Version from shared objects file]
[Loaded java.io.Closeable from shared objects file]
[Loaded java.io.InputStream from shared objects file]
[Loaded java.io.FileInputStream from shared objects file]
[Loaded java.io.FileDescriptor from shared objects file]
[Loaded java.io.Flushable from shared objects file]
[Loaded java.io.OutputStream from shared objects file]
[Loaded java.io.FileOutputStream from shared objects file]
[Loaded java.io.FilterInputStream from shared objects file]
[Loaded java.io.BufferedInputStream from shared objects file]
[Loaded java.util.concurrent.atomic.AtomicReferenceFieldUpdater from
shared objects file]
[Loaded java.util.concurrent.atomic.AtomicReferenceFieldUpdater
$AtomicReferenceFieldUpdaterImpl from shared objects file]
[Loaded sun.reflect.misc.ReflectUtil from /usr/lib/jvm/java-1.5.0-
sun-1.5.0.13/jre/lib/rt.jar]
[Loaded java.io.FilterOutputStream from shared objects file]
[Loaded java.io.PrintStream from shared objects file]
[Loaded java.io.BufferedOutputStream from shared objects file]
[Loaded java.io.Writer from shared objects file]
[Loaded java.io.OutputStreamWriter from shared objects file]
[Loaded sun.nio.cs.StreamEncoder from shared objects file]
[Loaded sun.io.Converters from shared objects file]
[Loaded sun.security.action.GetPropertyAction from shared objects
file]
[Loaded sun.nio.cs.StreamEncoder$CharsetSE from shared objects file]
[Loaded java.nio.charset.CharsetEncoder from shared objects file]
[Loaded sun.nio.cs.UTF_8$Encoder from shared objects file]
[Loaded sun.nio.cs.Surrogate$Parser from shared objects file]
[Loaded java.io.BufferedWriter from shared objects file]
[Loaded java.lang.Runtime from shared objects file]
[Loaded java.io.File from shared objects file]
[Loaded java.io.FileSystem from shared objects file]
[Loaded java.io.UnixFileSystem from shared objects file]
[Loaded java.io.ExpiringCache from shared objects file]
[Loaded java.util.LinkedHashMap from shared objects file]
[Loaded java.io.ExpiringCache$1 from shared objects file]
[Loaded java.util.LinkedHashMap$Entry from shared objects file]
[Loaded java.lang.ClassLoader$3 from shared objects file]
[Loaded java.lang.StringCoding$StringEncoder from shared objects file]
[Loaded java.lang.StringCoding$CharsetSE from shared objects file]
[Loaded java.io.ExpiringCache$Entry from shared objects file]
[Loaded java.lang.ClassLoader$NativeLibrary from shared objects file]
[Loaded java.lang.Terminator from shared objects file]
[Loaded sun.misc.SignalHandler from shared objects file]
[Loaded java.lang.Terminator$1 from shared objects file]
[Loaded sun.misc.Signal from shared objects file]
[Loaded sun.misc.NativeSignalHandler from shared objects file]
[Loaded sun.misc.JavaLangAccess from shared objects file]
[Loaded java.lang.System$2 from shared objects file]
[Loaded sun.misc.SharedSecrets from shared objects file]
[Loaded java.lang.NullPointerException from shared objects file]
[Loaded java.lang.ArithmeticException from shared objects file]
[Loaded java.lang.Compiler from shared objects file]
[Loaded java.lang.Compiler$1 from shared objects file]
[Loaded sun.misc.Launcher from shared objects file]
[Loaded java.net.URLStreamHandlerFactory from shared objects file]
[Loaded sun.misc.Launcher$Factory from shared objects file]
[Loaded java.security.SecureClassLoader from shared objects file]
[Loaded java.net.URLClassLoader from shared objects file]
[Loaded sun.misc.Launcher$ExtClassLoader from shared objects file]
[Loaded sun.security.util.Debug from shared objects file]
[Loaded java.util.StringTokenizer from shared objects file]
[Loaded java.security.PrivilegedExceptionAction from shared objects
file]
[Loaded sun.misc.Launcher$ExtClassLoader$1 from shared objects file]
[Loaded sun.net.www.ParseUtil from shared objects file]
[Loaded java.util.BitSet from shared objects file]
[Loaded java.lang.Math from shared objects file]
[Loaded java.net.URL from shared objects file]
[Loaded java.util.Locale from shared objects file]
[Loaded java.lang.CharacterDataLatin1 from shared objects file]
[Loaded java.net.Parts from shared objects file]
[Loaded java.net.URLStreamHandler from shared objects file]
[Loaded sun.net.www.protocol.file.Handler from shared objects file]
[Loaded java.util.HashSet from shared objects file]
[Loaded sun.misc.URLClassPath from shared objects file]
[Loaded java.util.ArrayList from shared objects file]
[Loaded sun.net.www.protocol.jar.Handler from shared objects file]
[Loaded sun.misc.Launcher$AppClassLoader from shared objects file]
[Loaded sun.misc.Launcher$AppClassLoader$1 from shared objects file]
[Loaded java.lang.SystemClassLoaderAction from shared objects file]
[Loaded java.net.URLClassLoader$1 from shared objects file]
[Loaded sun.misc.URLClassPath$3 from shared objects file]
[Loaded sun.misc.URLClassPath$Loader from shared objects file]
[Loaded sun.misc.URLClassPath$JarLoader from shared objects file]
[Loaded sun.misc.FileURLMapper from shared objects file]
[Loaded java.util.zip.ZipConstants from shared objects file]
[Loaded java.util.zip.ZipFile from shared objects file]
[Loaded java.util.jar.JarFile from shared objects file]
[Loaded sun.misc.JavaUtilJarAccess from shared objects file]
[Loaded java.util.jar.JavaUtilJarAccessImpl from shared objects file]
[Loaded java.util.zip.ZipFile$ZipCloser from shared objects file]
[Loaded java.util.zip.ZipFile$1 from shared objects file]
[Loaded java.nio.MappedByteBuffer from shared objects file]
[Loaded sun.nio.ch.DirectBuffer from shared objects file]
[Loaded java.nio.DirectByteBuffer from shared objects file]
[Loaded sun.misc.Cleaner from shared objects file]
[Loaded sun.misc.JarIndex from shared objects file]
[Loaded sun.misc.ExtensionDependency from shared objects file]
[Loaded java.util.zip.ZipEntry from shared objects file]
[Loaded java.util.jar.JarEntry from shared objects file]
[Loaded java.util.jar.JarFile$JarFileEntry from shared objects file]
[Loaded java.io.DataInput from shared objects file]
[Loaded java.io.DataInputStream from shared objects file]
[Loaded java.util.zip.ZipFile$ZipFileInputStream from shared objects
file]
[Loaded sun.nio.ByteBuffered from shared objects file]
[Loaded java.util.zip.ZipFile$MappedZipFileInputStream from shared
objects file]
[Loaded java.util.zip.InflaterInputStream from shared objects file]
[Loaded java.util.zip.ZipFile$2 from shared objects file]
[Loaded java.util.zip.Inflater from shared objects file]
[Loaded java.security.PrivilegedActionException from shared objects
file]
[Loaded sun.misc.URLClassPath$FileLoader from shared objects file]
[Loaded java.io.IOException from shared objects file]
[Loaded java.io.FileNotFoundException from shared objects file]
[Loaded java.io.Reader from shared objects file]
[Loaded java.io.BufferedReader from shared objects file]
[Loaded java.io.InputStreamReader from shared objects file]
[Loaded sun.nio.cs.StreamDecoder from shared objects file]
[Loaded sun.nio.cs.StreamDecoder$CharsetSD from shared objects file]
[Loaded java.util.AbstractSequentialList from shared objects file]
[Loaded java.util.Queue from shared objects file]
[Loaded java.util.LinkedList from shared objects file]
[Loaded java.util.LinkedList$Entry from shared objects file]
[Loaded sun.misc.Resource from shared objects file]
[Loaded sun.misc.URLClassPath$JarLoader$1 from shared objects file]
[Loaded java.lang.Package from shared objects file]
[Loaded java.util.jar.Manifest from shared objects file]
[Loaded java.util.jar.Attributes from shared objects file]
[Loaded java.util.jar.Manifest$FastInputStream from shared objects
file]
[Loaded java.util.jar.Attributes$Name from shared objects file]
[Loaded sun.misc.ASCIICaseInsensitiveComparator from shared objects
file]
[Loaded java.security.CodeSource from shared objects file]
[Loaded java.security.PermissionCollection from shared objects file]
[Loaded java.security.Permissions from shared objects file]
[Loaded java.net.URLConnection from shared objects file]
[Loaded sun.net.www.URLConnection from shared objects file]
[Loaded sun.net.www.protocol.file.FileURLConnection from shared
objects file]
[Loaded java.net.ContentHandler from shared objects file]
[Loaded java.net.UnknownContentHandler from shared objects file]
[Loaded sun.net.www.MessageHeader from shared objects file]
[Loaded java.io.FilePermission from shared objects file]
[Loaded java.io.FilePermission$1 from shared objects file]
[Loaded java.io.FilePermissionCollection from shared objects file]
[Loaded java.security.AllPermission from shared objects file]
[Loaded java.security.UnresolvedPermission from shared objects file]
[Loaded java.security.BasicPermissionCollection from shared objects
file]
[Loaded java.security.Principal from shared objects file]
[Loaded java.security.cert.Certificate from shared objects file]
[Loaded com.google.gwt.util.tools.ToolBase from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.UnableToCompleteException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.TreeLogger from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.log.AbstractTreeLogger from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.log.PrintWriterTreeLogger from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.util.tools.ArgHandler from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.arg.ArgHandlerLogLevel from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$1 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.Enum from shared objects file]
[Loaded com.google.gwt.util.tools.ArgHandlerDir from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.arg.ArgHandlerGenDir from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$2 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.util.tools.ArgHandlerOutDir from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$3 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.util.tools.ArgHandlerFlag from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.arg.ArgHandlerTreeLoggerFlag from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$4 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.util.tools.ArgHandlerExtra from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$ArgHandlerModuleName from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.arg.ArgHandlerScriptStyle from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.GWTCompiler$5 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.UnsupportedEncodingException from shared objects file]
[Loaded javax.xml.parsers.ParserConfigurationException from shared
objects file]
[Loaded org.w3c.dom.Node from shared objects file]
[Loaded java.lang.InterruptedException from shared objects file]
[Loaded com.google.gwt.dev.jdt.RebindOracle from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.FilenameFilter from shared objects file]
[Loaded com.google.gwt.dev.util.xml.Schema from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.CompilationSchema from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.FileReader from shared objects file]
[Loaded com.google.gwt.dev.jdt.RebindPermutationOracle from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.SourceOracle from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.util.tools.Utility from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.FileWriter from shared objects file]
[Loaded java.lang.AssertionError from /usr/lib/jvm/java-1.5.0-
sun-1.5.0.13/jre/lib/rt.jar]
[Loaded sun.misc.Launcher$1 from shared objects file]
[Loaded java.net.URLClassLoader$2 from shared objects file]
[Loaded java.net.URI from shared objects file]
[Loaded java.net.URI$Parser from shared objects file]
[Loaded java.util.SortedMap from shared objects file]
[Loaded java.util.TreeMap from shared objects file]
[Loaded com.google.gwt.dev.cfg.Compilations from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.PropertyOracle from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.StaticPropertyOracle from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.BadPropertyValueException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.TreeMap$Entry from shared objects file]
[Loaded java.util.TreeMap$2 from shared objects file]
[Loaded java.util.TreeMap$PrivateEntryIterator from shared objects
file]
[Loaded java.util.TreeMap$ValueIterator from shared objects file]
[Loaded java.util.HashMap$KeySet from shared objects file]
[Loaded java.util.HashMap$HashIterator from shared objects file]
[Loaded java.util.HashMap$KeyIterator from shared objects file]
[Loaded com.google.gwt.core.ext.TreeLogger$Type from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.TreeLogger$2 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.TreeLogger$1 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.BootStrapPlatform from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.UnsatisfiedLinkError from shared objects file]
[Loaded java.io.PrintWriter from shared objects file]
[Loaded com.google.gwt.dev.cfg.ModuleDefLoader from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.net.URISyntaxException from shared objects file]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.log.AbstractTreeLogger
$UncommittedBranchData from file:/home/axel/gwt-linux-1.4.61/gwt-dev-
linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDef from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.PropertyProvider from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.DefaultPropertyProvider from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.FileOracleFactory$FileFilter from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.IllegalStateException from shared objects file]
[Loaded com.google.gwt.dev.jdt.TypeOracleBuilder from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDef$1 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDef$2 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.regex.Pattern from shared objects file]
[Loaded java.util.regex.Pattern$Node from shared objects file]
[Loaded java.util.regex.Pattern$LastNode from shared objects file]
[Loaded java.util.regex.Pattern$GroupHead from shared objects file]
[Loaded java.util.regex.Pattern$Single from shared objects file]
[Loaded java.util.regex.Pattern$Slice from shared objects file]
[Loaded java.util.regex.Pattern$Begin from shared objects file]
[Loaded java.util.regex.Pattern$First from shared objects file]
[Loaded java.util.regex.Pattern$Start from shared objects file]
[Loaded java.util.regex.Pattern$TreeInfo from shared objects file]
[Loaded java.util.regex.MatchResult from shared objects file]
[Loaded java.util.regex.Matcher from shared objects file]
[Loaded java.util.SubList from shared objects file]
[Loaded java.util.RandomAccessSubList from shared objects file]
[Loaded java.util.ListIterator from shared objects file]
[Loaded java.util.SubList$1 from shared objects file]
[Loaded java.util.AbstractList$Itr from shared objects file]
[Loaded java.util.AbstractList$ListItr from shared objects file]
[Loaded com.google.gwt.dev.util.Util from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.net.MalformedURLException from shared objects file]
[Loaded java.lang.reflect.InvocationTargetException from shared
objects file]
[Loaded java.lang.IllegalAccessException from shared objects file]
[Loaded java.lang.IllegalArgumentException from shared objects file]
[Loaded java.lang.NoSuchMethodException from shared objects file]
[Loaded java.security.GeneralSecurityException from shared objects
file]
[Loaded java.security.NoSuchAlgorithmException from shared objects
file]
[Loaded java.io.StringWriter from shared objects file]
[Loaded com.google.gwt.dev.jdt.CacheManager from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ASTVisitor from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.TypeRefVisitor from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.CacheManager$DependencyVisitor from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JType from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.HasMetaData from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JClassType from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.shell.JavaScriptHost from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.shell.ShellJavaScriptHost from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.shell.ShellGWT from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.TypeOracle from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.TypeOracleException from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.NotFoundException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.ParseException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.BadTypeArgsException from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JArrayType from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JPrimitiveType from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JParameterizedType from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JAbstractMethod from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JConstructor from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JField from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JMethod from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JPackage from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.JParameter from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.IdentityHashMap from /usr/lib/jvm/java-1.5.0-
sun-1.5.0.13/jre/lib/rt.jar]
[Loaded com.google.gwt.dev.jdt.CacheManager$Mapper from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.CacheManager$DiskCache from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.SourceOracleOnTypeOracle from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.AbstractCompiler from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.AstCompiler from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.INameEnvironment from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ICompilerRequestor from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.IProblemFactory from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.IDependent from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.ICompilationUnit from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.log.ThreadLocalTreeLoggerProxy from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.AbstractCompiler$INameEnvironmentImpl
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.classfmt.ClassFormatException from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.IGenericType from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.IBinaryType from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.IErrorHandlingPolicy from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies
$4 from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.problem.DefaultProblemFactory from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.IndexOutOfBoundsException from shared objects file]
[Loaded java.lang.ArrayIndexOutOfBoundsException from shared objects
file]
[Loaded java.lang.NumberFormatException from shared objects file]
[Loaded java.util.MissingResourceException from shared objects file]
[Loaded org.eclipse.jdt.core.compiler.IProblem from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.ResourceBundle from shared objects file]
[Loaded java.util.ResourceBundle$ResourceCacheKey from shared objects
file]
[Loaded java.util.ResourceBundle$LoaderReference from shared objects
file]
[Loaded sun.misc.SoftCache$ValueCell from shared objects file]
[Loaded java.util.zip.ZipFile$3 from shared objects file]
[Loaded java.util.jar.JarFile$1 from shared objects file]
[Loaded java.util.ResourceBundle$1 from shared objects file]
[Loaded java.net.JarURLConnection from shared objects file]
[Loaded sun.net.www.protocol.jar.JarURLConnection from shared objects
file]
[Loaded sun.net.www.protocol.jar.JarFileFactory from shared objects
file]
[Loaded sun.net.www.protocol.jar.URLJarFile from shared objects file]
[Loaded sun.net.www.protocol.jar.URLJarFile$URLJarFileEntry from
shared objects file]
[Loaded sun.net.www.protocol.jar.JarURLConnection$JarURLInputStream
from /usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/rt.jar]
[Loaded java.util.PropertyResourceBundle from shared objects file]
[Loaded java.util.Properties$LineReader from shared objects file]
[Loaded java.util.Hashtable$EntrySet from shared objects file]
[Loaded java.util.Collections$SynchronizedCollection from shared
objects file]
[Loaded java.util.Collections$SynchronizedSet from shared objects
file]
[Loaded java.util.Hashtable$Enumerator from shared objects file]
[Loaded org.eclipse.jdt.internal.compiler.util.HashtableOfInt from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.ResourceBundleEnumeration from shared objects file]
[Loaded com.google.gwt.dev.jdt.AbstractCompiler$ICompilerRequestorImpl
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.impl.ITypeRequestor from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.problem.ProblemSeverities
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.Compiler from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.AbstractCompiler$CompilerImpl from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.problem.AbortCompilation
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.problem.AbortCompilationUnit
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.impl.ReferenceContext from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.BaseTypes from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.env.IConstants from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.CompilerModifiers
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.TypeConstants from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.TypeIds from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ASTNode from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.ProblemReasons from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.impl.CompilerOptions from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.ByteArrayInputStream from shared objects file]
[Loaded org.eclipse.jdt.internal.compiler.problem.ProblemHandler from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.problem.ProblemReporter from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.TagBits from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.Binding from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.TypeBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.SourceTypeBinding
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Statement from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Expression from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.TypeReference from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.Substitution from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.lookup.ParameterizedTypeBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.RawTypeBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.TypeVariableBinding
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.InvocationSite from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Reference from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.NameReference from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.QualifiedNameReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.QualifiedTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.ArrayQualifiedTypeReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ImportReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Literal from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.NumberLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.AbstractMethodDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.lookup.ProblemReferenceBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.ArrayBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.BaseTypeBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.lookup.UnresolvedReferenceBinding
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.WildcardBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.PackageBinding from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.ProblemPackageBinding
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.BinaryTypeBinding
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.MethodVerifier from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.MethodVerifier15 from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.core.compiler.CharOperation from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding$1
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.util.HashtableOfPackage from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.util.SimpleLookupTable from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.parser.ParserBasicInformation from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.TerminalTokens from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.OperatorIds from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.Parser from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.core.compiler.InvalidInputException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SingleTypeReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.ExceptionInInitializerError from shared objects
file]
[Loaded org.eclipse.jdt.internal.compiler.ast.ArrayTypeReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.ParameterizedSingleTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.ParameterizedQualifiedTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.IntLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.LongLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.FloatLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.DoubleLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.CharLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.StringLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.MagicLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.FalseLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.TrueLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.NullLiteral from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Annotation from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SingleMemberAnnotation
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.AbstractVariableDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.TypeParameter from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Wildcard from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.IntLiteralMinValue from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.LongLiteralMinValue from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.OperatorExpression from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.UnaryExpression from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SubRoutineStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.TryStatement from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ThrowStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ReturnStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.BranchStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ContinueStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.BreakStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.AssertStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ForStatement from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SwitchStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.FieldDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Initializer from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ThisReference from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ClassLiteralAccess from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.QualifiedThisReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.QualifiedSuperReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.NormalAnnotation from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SuperReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.MessageSend from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.SingleNameReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.MethodDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.AnnotationMethodDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.MemberValuePair from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.MarkerAnnotation from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.TypeDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.InstanceOfExpression
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.LocalDeclaration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Argument from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.FieldReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ExplicitConstructorCall
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.AllocationExpression
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.QualifiedAllocationExpression
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredElement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredStatement
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredType from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ForeachStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.EmptyStatement from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.CaseStatement from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ConstructorDeclaration
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.CastExpression from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Block from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.Assignment from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.CompoundAssignment from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.ArrayAllocationExpression from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ArrayReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredUnit from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredMethod from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredField from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.RecoveredInitializer
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.ast.ArrayInitializer from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.util.SuffixConstants from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.util.Util from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.util.Util$Displayable from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.Scanner from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.AbstractCommentParser
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.eclipse.jdt.internal.compiler.parser.JavadocParser from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocSingleTypeReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocSingleNameReference from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocQualifiedTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocImplicitTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocArgumentExpression from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocArraySingleTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded
org.eclipse.jdt.internal.compiler.ast.JavadocArrayQualifiedTypeReference
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jdt.AstCompiler
$CompilationUnitDeclarationCache from file:/home/axel/gwt-linux-1.4.61/
gwt-dev-linux.jar]
[Loaded com.google.gwt.core.ext.typeinfo.CompilationUnitProvider from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Properties from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.FileOracleFactory from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.FileOracle from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.FileOracleFactory$FileOracleImpl from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Rules from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Scripts from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Styles from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded sun.misc.URLClassPath$FileLoader$1 from /usr/lib/jvm/
java-1.5.0-sun-1.5.0.13/jre/lib/rt.jar]
[Loaded sun.net.ProgressMonitor from shared objects file]
[Loaded sun.net.ProgressMeteringPolicy from shared objects file]
[Loaded sun.net.DefaultProgressMeteringPolicy from shared objects
file]
[Loaded com.google.gwt.dev.util.xml.AttributeConverter from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$PropertyNameAttrCvt
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$PropertyAttrCvt from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$PropertyValueAttrCvt
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema
$PropertyValueArrayAttrCvt from file:/home/axel/gwt-linux-1.4.61/gwt-
dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$ObjAttrCvt from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.JsParserException from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.StringReader from shared objects file]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$BodySchema from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.InstantiationException from shared objects file]
[Loaded com.google.gwt.core.ext.Generator from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.JsParser from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsVisitable from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.jjs.HasSourceInfo from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsNode from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsStatement from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsBlock from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsExprStmt from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsExpression from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsNameRef from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsStringLiteral from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.HasArguments from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsInvocation from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsIf from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsArrayAccess from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsReturn from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsBreak from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsContinue from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsArrayLiteral from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsVars from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsNew from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsThrow from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsTry from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsSwitch from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.HasName from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsLabel from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.UncheckedJsParserException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.ErrorReporter from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsSwitchMember from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsCase from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsDefault from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsEmpty from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsBinaryOperation from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsRegExp from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsThisRef from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsBooleanLiteral from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsNullLiteral from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsUnaryOperation from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsPrefixOperation from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsPostfixOperation from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsObjectLiteral from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsIntegralLiteral from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsDecimalLiteral from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsFunction from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsForIn from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsFor from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsWhile from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsDoWhile from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsConditional from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.Context from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.EvaluatorException from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.JsParser$1 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsProgram from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.TextOutput from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsGlobalBlock from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsDebugger from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsScope from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsRootScope from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsName from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsCollection from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsStatements from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$ScriptReadyBodySchema
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Rule from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.RuleReplaceWith from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Condition from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.CompoundCondition from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ConditionAll from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$ConditionSchema from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$IncludeExcludeSchema
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema
$PropertyProviderBodySchema from file:/home/axel/gwt-linux-1.4.61/gwt-
dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.RuleGenerateWith from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.RuleFail from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$PropertyName from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Property from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$PropertyValue from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.ReflectiveParser from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.HandlerClassInfo from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.HandlerMethod from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.HandlerMethod$1 from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.HandlerParam from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.Void from shared objects file]
[Loaded com.google.gwt.dev.cfg.ModuleDefSchema$1 from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.reflect.Array from shared objects file]
[Loaded com.google.gwt.dev.cfg.ConditionWhenTypeIs from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ConditionWhenTypeAssignableTo from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ConditionWhenPropertyIs from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ConditionNone from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ConditionAny from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.EntityResolver from shared objects file]
[Loaded org.xml.sax.DTDHandler from shared objects file]
[Loaded org.xml.sax.ContentHandler from shared objects file]
[Loaded org.xml.sax.ErrorHandler from shared objects file]
[Loaded org.xml.sax.helpers.DefaultHandler from shared objects file]
[Loaded com.google.gwt.dev.util.xml.ReflectiveParser$Impl from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.SAXException from shared objects file]
[Loaded com.google.gwt.dev.util.xml.DefaultSchema from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded javax.xml.parsers.SAXParser from shared objects file]
[Loaded org.xml.sax.InputSource from shared objects file]
[Loaded com.google.gwt.dev.util.xml.AttributeConverterForInteger from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.AttributeConverterForString from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.AttributeConverterForBoolean from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded javax.xml.parsers.SAXParserFactory from shared objects file]
[Loaded javax.xml.parsers.FactoryFinder from shared objects file]
[Loaded javax.xml.parsers.SecuritySupport from shared objects file]
[Loaded javax.xml.parsers.SecuritySupport$2 from shared objects file]
[Loaded javax.xml.parsers.SecuritySupport$1 from shared objects file]
[Loaded javax.xml.parsers.SecuritySupport$5 from shared objects file]
[Loaded javax.xml.parsers.SecuritySupport$4 from shared objects file]
[Loaded org.apache.xerces.jaxp.SAXParserFactoryImpl from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.jaxp.JAXPConstants from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.jaxp.SAXParserImpl from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.SAXNotRecognizedException from shared objects
file]
[Loaded org.xml.sax.SAXNotSupportedException from shared objects file]
[Loaded org.xml.sax.XMLReader from shared objects file]
[Loaded org.xml.sax.Parser from shared objects file]
[Loaded org.apache.xerces.xni.XMLDocumentHandler from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLDTDHandler from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLDTDContentModelHandler from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.XMLParser from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.AbstractXMLDocumentParser from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.AbstractSAXParser from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.SAXParser from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XNIException from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLConfigurationException from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLErrorHandler from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLEntityResolver from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.AttributeList from shared objects file]
[Loaded org.xml.sax.Attributes from shared objects file]
[Loaded org.apache.xerces.xni.psvi.ItemPSVI from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.Locator from shared objects file]
[Loaded org.apache.xerces.xni.parser.XMLParseException from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.xml.sax.SAXParseException from shared objects file]
[Loaded org.apache.xerces.util.ObjectFactory from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.ObjectFactory$ConfigurationError from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.SecurityException from shared objects file]
[Loaded java.lang.Thread$State from shared objects file]
[Loaded sun.reflect.NativeMethodAccessorImpl from shared objects file]
[Loaded sun.reflect.DelegatingMethodAccessorImpl from shared objects
file]
[Loaded org.apache.xerces.xni.parser.XMLComponentManager from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLParserConfiguration from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLPullParserConfiguration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.ParserConfigurationSettings from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.BasicParserConfiguration from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.DTDConfiguration from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.StandardParserConfiguration from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLComponent from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLResourceIdentifier from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLLocator from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.MessageFormatter from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDTDSource from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDTDContentModelSource from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDTDScanner from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDocumentSource from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDocumentScanner from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.SymbolTable from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.grammars.XMLGrammarPool from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.SymbolTable$Entry from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$RewindableInputStream
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$Entity from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$ExternalEntity from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$InternalEntity from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$ScannedEntity from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityScanner from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityManager$EntityScanner from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.URI$MalformedURIException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.URI from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.io.UTF8Reader from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.io.ASCIIReader from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.io.UCSReader from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.XMLResourceIdentifierImpl from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.io.EOFException from shared objects file]
[Loaded org.apache.xerces.impl.XMLErrorReporter from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLEntityHandler from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLScanner from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentFragmentScannerImpl from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLString from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.XMLStringBuffer from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.XMLAttributes from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$Dispatcher from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$ElementStack from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.QName from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher from file:/home/axel/gwt-linux-1.4.61/gwt-
dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl
$ContentDispatcher from file:/home/axel/gwt-linux-1.4.61/gwt-dev-
linux.jar]
[Loaded org.apache.xerces.util.XMLAttributesImpl from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.Augmentations from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.XMLAttributesImpl$Attribute from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.AugmentationsImpl from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.AugmentationsImpl
$AugmentationsItemsContainer from file:/home/axel/gwt-linux-1.4.61/gwt-
dev-linux.jar]
[Loaded org.apache.xerces.util.AugmentationsImpl$SmallContainer from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.AugmentationsImpl$LargeContainer from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl
$XMLDeclDispatcher from file:/home/axel/gwt-linux-1.4.61/gwt-dev-
linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl$PrologDispatcher
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLDocumentScannerImpl
$TrailingMiscDispatcher from file:/home/axel/gwt-linux-1.4.61/gwt-dev-
linux.jar]
[Loaded org.apache.xerces.impl.XMLDTDScannerImpl from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDTDFilter from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDTDContentModelFilter from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLDTDProcessor from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLEntityDecl from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLDocumentFilter from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLDTDValidator from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.validation.EntityState from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.DatatypeException from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.InvalidDatatypeValueException from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.validation.ValidationContext from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.grammars.XMLGrammarDescription from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.validation.ValidationState from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLElementDecl from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLSimpleType from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.XMLAttributeDecl from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dtd.DTDGrammarBucket from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.XMLNamespaceBinder from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.NamespaceContext from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.NamespaceSupport from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.DTDDVFactory from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.DVFactoryException from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.DTDDVFactoryImpl from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.DatatypeValidator from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.StringDatatypeValidator from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.IDDatatypeValidator from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.IDREFDatatypeValidator from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.ListDatatypeValidator from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.ENTITYDatatypeValidator from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.NOTATIONDatatypeValidator from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.dv.dtd.NMTOKENDatatypeValidator from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.validation.ValidationManager from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.impl.msg.XMLMessageFormatter from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy
from file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.xni.parser.XMLInputSource from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.parsers.AbstractSAXParser$LocatorProxy from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.xerces.util.XMLChar from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.xml.HandlerArgs from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded sun.reflect.UnsafeFieldAccessorFactory from shared objects
file]
[Loaded sun.reflect.FieldAccessor from shared objects file]
[Loaded sun.reflect.FieldAccessorImpl from shared objects file]
[Loaded sun.reflect.UnsafeFieldAccessorImpl from shared objects file]
[Loaded sun.reflect.UnsafeQualifiedFieldAccessorImpl from /usr/lib/jvm/
java-1.5.0-sun-1.5.0.13/jre/lib/rt.jar]
[Loaded sun.reflect.UnsafeQualifiedObjectFieldAccessorImpl from /usr/
lib/jvm/java-1.5.0-sun-1.5.0.13/jre/lib/rt.jar]
[Loaded com.google.gwt.dev.util.Empty from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.FileScanner from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.types.selectors.SelectorScanner from
file:/home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.types.ResourceFactory from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.DirectoryScanner from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.types.ZipScanner from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.BuildException from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.util.zip.ZipException from shared objects file]
[Loaded org.apache.tools.ant.taskdefs.condition.Condition from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.taskdefs.condition.Os from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.util.FileUtils from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.text.CharacterIterator from shared objects file]
[Loaded org.apache.tools.ant.util.Tokenizer from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.ProjectComponent from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded org.apache.tools.ant.util.LineTokenizer from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.ModuleDef$3 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded sun.reflect.ClassFileConstants from shared objects file]
[Loaded sun.reflect.AccessorGenerator from shared objects file]
[Loaded sun.reflect.MethodAccessorGenerator from shared objects file]
[Loaded sun.reflect.ByteVectorFactory from shared objects file]
[Loaded sun.reflect.ByteVector from shared objects file]
[Loaded sun.reflect.ByteVectorImpl from shared objects file]
[Loaded sun.reflect.ClassFileAssembler from shared objects file]
[Loaded sun.reflect.UTF8 from shared objects file]
[Loaded sun.reflect.Label from shared objects file]
[Loaded sun.reflect.Label$PatchInfo from shared objects file]
[Loaded sun.reflect.MethodAccessorGenerator$1 from shared objects
file]
[Loaded sun.reflect.ClassDefiner from shared objects file]
[Loaded sun.reflect.ClassDefiner$1 from shared objects file]
[Loaded sun.reflect.GeneratedMethodAccessor1 from __JVM_DefineClass__]
[Loaded com.google.gwt.dev.js.rhino.TokenStream from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.LineBuffer from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.Parser from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.JavaScriptException from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.IRFactory from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.Node from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.UnsupportedOperationException from shared objects
file]
[Loaded java.lang.CloneNotSupportedException from shared objects file]
[Loaded com.google.gwt.dev.js.rhino.Node$NumberNode from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.Node$StringNode from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.ScriptRuntime from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.rhino.UintMap from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.lang.CharacterData00 from /usr/lib/jvm/java-1.5.0-
sun-1.5.0.13/jre/lib/rt.jar]
[Loaded com.google.gwt.dev.js.ast.JsParameters from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsParameter from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsVars$JsVarCollection from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsVars$JsVar from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.JsKeywords from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsExpressions from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsOperator from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsBinaryOperator from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded java.math.BigInteger from shared objects file]
[Loaded com.google.gwt.dev.js.ast.JsUnaryOperator from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.cfg.Conditions from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.user.rebind.rpc.ServiceInterfaceProxyGenerator
from file:/home/axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded sun.reflect.GeneratedMethodAccessor2 from __JVM_DefineClass__]
[Loaded sun.reflect.GeneratedMethodAccessor3 from __JVM_DefineClass__]
[Loaded sun.reflect.GeneratedMethodAccessor4 from __JVM_DefineClass__]
[Loaded sun.reflect.GeneratedMethodAccessor5 from __JVM_DefineClass__]
[Loaded sun.reflect.GeneratedConstructorAccessor1 from
__JVM_DefineClass__]
[Loaded sun.reflect.BootstrapConstructorAccessorImpl from shared
objects file]
[Loaded sun.reflect.GeneratedMethodAccessor6 from __JVM_DefineClass__]
[Loaded sun.reflect.GeneratedConstructorAccessor2 from
__JVM_DefineClass__]
[Loaded sun.reflect.GeneratedMethodAccessor7 from __JVM_DefineClass__]
[Loaded com.google.gwt.user.rebind.ui.ImageBundleGenerator from file:/
home/axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.dev.js.ast.JsCatches from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.HasCondition from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsCatch from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.js.ast.JsCatchScope from file:/home/axel/
gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.i18n.rebind.LocalizableGenerator from file:/
home/axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.i18n.client.Localizable from file:/home/axel/
gwt-linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.i18n.client.Constants from file:/home/axel/gwt-
linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.i18n.client.ConstantsWithLookup from file:/home/
axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.i18n.client.Messages from file:/home/axel/gwt-
linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.user.rebind.AbstractSourceCreator from file:/
home/axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded com.google.gwt.i18n.rebind.LocalizableLinkageCreator from
file:/home/axel/gwt-linux-1.4.61/gwt-user.jar]
[Loaded sun.reflect.GeneratedMethodAccessor8 from __JVM_DefineClass__]
[Loaded com.google.gwt.dev.cfg.Messages from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message2 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message2ClassClass from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Formatter from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterToString from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForClass from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForFile from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForURL from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForInteger from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForLong from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForMethod from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForString from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.FormatterForStringArray from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message1 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message1String from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message0 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
Loading module 'org.axed.user.AxedLib'
Loading inherited module 'org.timepedia.exporter.Exporter'
[ERROR] Unable to load class
'org.timepedia.exporter.rebind.ExporterGenerator'
java.lang.ClassNotFoundException:
org.timepedia.exporter.rebind.ExporterGenerator
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at com.google.gwt.dev.cfg.ModuleDefSchema
$ObjAttrCvt.convertToArg(ModuleDefSchema.java:493)
at
com.google.gwt.dev.util.xml.HandlerArgs.convertToArg(HandlerArgs.java:
64)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
214)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.impl.XMLNamespaceBinder.startElement(XMLNamespaceBinder.java:
571)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(XMLDTDValidator.java:
756)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
752)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefSchema
$BodySchema.__inherits_begin(ModuleDefSchema.java:143)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
223)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:
217)
at
org.apache.xerces.impl.XMLNamespaceBinder.emptyElement(XMLNamespaceBinder.java:
594)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:
777)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
748)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefLoader.load(ModuleDefLoader.java:
208)
at
com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:
81)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:753)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:745)
at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:213)
[Loaded com.google.gwt.dev.util.xml.Messages from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message3 from file:/home/axel/gwt-
linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message3IntStringClass from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message3StringIntString from file:/
home/axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message2StringInt from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[Loaded com.google.gwt.dev.util.msg.Message2IntString from file:/home/
axel/gwt-linux-1.4.61/gwt-dev-linux.jar]
[ERROR] Failure while parsing XML
com.google.gwt.core.ext.UnableToCompleteException: (see previous log
entries)
at com.google.gwt.dev.cfg.ModuleDefSchema
$ObjAttrCvt.convertToArg(ModuleDefSchema.java:508)
at
com.google.gwt.dev.util.xml.HandlerArgs.convertToArg(HandlerArgs.java:
64)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
214)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.impl.XMLNamespaceBinder.startElement(XMLNamespaceBinder.java:
571)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(XMLDTDValidator.java:
756)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
752)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefSchema
$BodySchema.__inherits_begin(ModuleDefSchema.java:143)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
223)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:
217)
at
org.apache.xerces.impl.XMLNamespaceBinder.emptyElement(XMLNamespaceBinder.java:
594)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:
777)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
748)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefLoader.load(ModuleDefLoader.java:
208)
at
com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:
81)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:753)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:745)
at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:213)
[ERROR] Line 7: Unexpected exception while processing element
'inherits'
com.google.gwt.core.ext.UnableToCompleteException: (see previous log
entries)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:319)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefSchema
$BodySchema.__inherits_begin(ModuleDefSchema.java:143)
at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
223)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:
217)
at
org.apache.xerces.impl.XMLNamespaceBinder.emptyElement(XMLNamespaceBinder.java:
594)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:
777)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
748)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefLoader.load(ModuleDefLoader.java:
208)
at
com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:
81)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:753)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:745)
at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:213)
[ERROR] Failure while parsing XML
com.google.gwt.core.ext.UnableToCompleteException: (see previous log
entries)
at
com.google.gwt.dev.util.xml.DefaultSchema.onHandlerException(DefaultSchema.java:
56)
at com.google.gwt.dev.util.xml.Schema.onHandlerException(Schema.java:
65)
at com.google.gwt.dev.util.xml.Schema.onHandlerException(Schema.java:
65)
at
com.google.gwt.dev.util.xml.HandlerMethod.invokeBegin(HandlerMethod.java:
233)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.startElement(ReflectiveParser.java:242)
at
org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:
454)
at
org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:
217)
at
org.apache.xerces.impl.XMLNamespaceBinder.emptyElement(XMLNamespaceBinder.java:
594)
at
org.apache.xerces.impl.dtd.XMLDTDValidator.emptyElement(XMLDTDValidator.java:
777)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:
748)
at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:
1453)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:
333)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
524)
at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:
580)
at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:
1169)
at com.google.gwt.dev.util.xml.ReflectiveParser
$Impl.parse(ReflectiveParser.java:295)
at com.google.gwt.dev.util.xml.ReflectiveParser$Impl.access
$100(ReflectiveParser.java:48)
at
com.google.gwt.dev.util.xml.ReflectiveParser.parse(ReflectiveParser.java:
366)
at
com.google.gwt.dev.cfg.ModuleDefLoader.nestedLoad(ModuleDefLoader.java:
175)
at com.google.gwt.dev.cfg.ModuleDefLoader.load(ModuleDefLoader.java:
208)
at
com.google.gwt.dev.cfg.ModuleDefLoader.loadFromClassPath(ModuleDefLoader.java:
81)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:753)
at com.google.gwt.dev.GWTCompiler.run(GWTCompiler.java:745)
at com.google.gwt.dev.GWTCompiler.main(GWTCompiler.java:213)
[ERROR] Build failed
[Loaded java.lang.Shutdown from shared objects file]
[Loaded java.lang.Shutdown$Lock from shared objects file]
> --
> Fred Sauer
> f...@allen-sauer.com

Fred Sauer

unread,
Jan 30, 2008, 12:25:53 PM1/30/08
to Ray Cromwell, Axel Kittenberger, Google Web Toolkit
Ray,

Maybe you could lend a hand?

Ray Cromwell

unread,
Jan 30, 2008, 12:58:31 PM1/30/08
to Fred Sauer, Axel Kittenberger, Google Web Toolkit
Generators are different than normal GWT modules in the sense that
they include source that must be translatable to Javascript (in
.client package) and stuff that is run as Java code inside the
compiler and must be included as compiled .class files (the .rebind
package). Basically, you need to compile the gwt-exporter, and include
both source and .class files in a JAR and then put that in the
classpath. I am not in the office right now, but in 2-3 hours I can
upload a compiled JAR to the project page for you.

-Ray

> --
> Fred Sauer
> fr...@allen-sauer.com

Axel Kittenberger

unread,
Jan 30, 2008, 4:18:29 PM1/30/08
to Google Web Toolkit
"""but in 2-3 hours I can upload a compiled JAR to the project page
for you."""

Yeeeeeeeeh! :-) :-) You would my hero.

On Jan 30, 6:58 pm, "Ray Cromwell" <cromwell...@gmail.com> wrote:
> Generators are different than normal GWT modules in the sense that
> they include source that must be translatable to Javascript (in
> .client package) and stuff that is run as Java code inside the
> compiler and must be included as compiled .class files (the .rebind
> package). Basically, you need to compile the gwt-exporter, and include
> both source and .class files in a JAR and then put that in the
> classpath. I am not in the office right now, but in 2-3 hours I can
> upload a compiled JAR to the project page for you.
>
> -Ray
>
> > f...@allen-sauer.com

Ray Cromwell

unread,
Jan 30, 2008, 6:04:58 PM1/30/08
to Fred Sauer, Google-We...@googlegroups.com
Oh, I just noticed I provided a compiled version of the exporter as a
JAR in the Chronoscope repository, you can download it here:
http://gwt-chronoscope.googlecode.com/svn/trunk/lib/

-Ray

Axel Kittenberger

unread,
Jan 31, 2008, 12:57:11 PM1/31/08
to Google Web Toolkit
Thank you very much, it works!

Q: Is there anything I can do to help your project getting to release
stage?

Q: Can't I return a GWT object from a public exported member function
or am I doing just something wrong?

On Jan 31, 12:04 am, "Ray Cromwell" <cromwell...@gmail.com> wrote:
> Oh, I just noticed I provided a compiled version of the exporter as a
> JAR in the Chronoscope repository, you can download it here:http://gwt-chronoscope.googlecode.com/svn/trunk/lib/
>
> -Ray
>
> > f...@allen-sauer.com

Axel Kittenberger

unread,
Feb 4, 2008, 5:28:59 PM2/4/08
to Google Web Toolkit
Fine it works in Firefox!

But it doesn't in IE!?!?!

Any hints?

Axel Kittenberger

unread,
Feb 5, 2008, 6:55:27 PM2/5/08
to Google Web Toolkit
I debugged this, the problem is load sequence.

IE seems to exectue onLoad() BEFORE executing the browserspecific
javascript the GWT nocache-js loader adds a head attribute.

If I move this webpage startup onto a button it works...

So any hints how I can defer javascript execution so it gets started
*after* GWT finished loading? And it works with the bugginess that is
IE?

Peter Blazejewicz

unread,
Feb 6, 2008, 3:21:49 PM2/6/08
to Google Web Toolkit
hi Axel,

if your javascript callback is called from body "onload" couldn't you
just simply execute it from onModuleLoad() via JSNI?

regards,
Peter

Axel Kittenberger

unread,
Feb 6, 2008, 3:28:36 PM2/6/08
to Google Web Toolkit
Well technically yes!

However if you have written a "library" with GWT; you want to offer
people to use without having to use GWT, they'll find this very
uncomfortable. I haven't yet tried, but i guess window.getTimer(0)
might do the trick...

If that doesn't work, I'll just do that, an try if I can invoke a self
invented "body.onGWTLoad" attribute, as mildly dirty workaround.

On Feb 6, 9:21 pm, Peter Blazejewicz <peter.blazejew...@gmail.com>
wrote:

Ray Cromwell

unread,
Feb 7, 2008, 2:57:16 AM2/7/08
to Google Web Toolkit

Interesting problem. I didn't encounter it because in my project, my
GWT app invokes a JS ready function which then uses the exported API.
By the way, did you try loading the -xs version (non-IFRAME) to see if
it behaves any different?

-Ray
> > > > > > JAR in theChronoscoperepository, you can download it here:http://gwt-chronoscope.googlecode.com/svn/trunk/lib/

Axel Kittenberger

unread,
Feb 7, 2008, 6:00:44 AM2/7/08
to Google Web Toolkit
Yes tried it, same behaviour :-)

Axel Kittenberger

unread,
Feb 7, 2008, 9:18:31 AM2/7/08
to Google Web Toolkit
Okay here the solution, thanks for all the hints!

My Entrypoint now looks like this, the js-code-user has only to be
aware of to use onGwtLoad() instead of onLoad() if he wants the stuff
to work on IE 7.0* also...

* (I gave up on IE 6.0 compability, IE 6.0 just crashes (segfaults)
with my Applikation! grrrr@I.E. )
-----
public class AxedLib implements EntryPoint {
public void onModuleLoad() {
((Exporter) GWT.create(AxedWidget.class )).export();
((Exporter) GWT.create(HPositionBar.class)).export();
((Exporter) GWT.create(VPositionBar.class)).export();
((Exporter) GWT.create(AxedListenerJSNI.class)).export();

_runOnGwtLoad();
}

private native void _runOnGwtLoad() /*-{
if ($doc.body.getAttribute("onGwtLoad") != "undefined") {
eval($doc.body.getAttribute("onGwtLoad"));
}
}-*/;
}
-----

Axel Kittenberger

unread,
Apr 29, 2008, 6:45:11 AM4/29/08
to Ray Cromwell, Fred Sauer, Google Web Toolkit
Hi! Sorry to disturb you, but I've an issue with gwtexporter I otherwise happily use a lot and became an important tool for my project.

I'm not sure if I'm doing something wrong, but I have problems exporting (non static) inner classes, that is the error message I get:
--------------------

axel@woodstock:~/gwt-linux-1.4.61$ ./AxedLib-compile -style DETAILED
Computing all possible rebind results for 'org.axed.user.client.FindResult'
   Rebinding org.axed.user.client.FindResult
      Assimilating generated source
         Computing all possible rebind results for 'org.axed.user.client.AxedArea'
            Rebinding org.axed.user.client.AxedArea
               Assimilating generated source
                  Computing all possible rebind results for 'org.axed.user.client.axessory.HPositionBar'
                     Rebinding org.axed.user.client.axessory.HPositionBar
                        Assimilating generated source
                           Computing all possible rebind results for 'org.axed.user.client.AxedListenerJSNI'
                              Rebinding org.axed.user.client.AxedListenerJSNI
                                 Assimilating generated source
                                    [ERROR] Errors in 'transient source for org.axed.user.client.GenericExporterImpl'
                                       [ERROR] Line 27:  Cannot instantiate the type AxedEvent.Generic
                                    [ERROR] Compilation problem due to 'transient source for org.axed.user.client.GenericExporterImpl'; see snapshot /tmp/gen243.java
                                 [ERROR] Unable to find recently-generated type 'org.axed.user.client.GenericExporterImpl
                                    Computing all possible rebind results for 'org.axed.user.client.axessory.VPositionBar'
                                       Rebinding org.axed.user.client.axessory.VPositionBar
                                          Assimilating generated source
                                             [ERROR] Errors in 'transient source for org.axed.user.client.GenericExporterImpl'
                                                [ERROR] Line 27:  Cannot instantiate the type AxedEvent.Generic
                                             [ERROR] Compilation problem due to 'transient source for org.axed.user.client.GenericExporterImpl'; see snapshot /tmp/gen244.java
                                             [ERROR] Errors in '/home/axel/gwt-linux-1.4.61/src/org/axed/user/client/AxedLib.java'
                                                [ERROR] Line 22:  Failed to resolve 'org.axed.user.client.AxedListenerJSNI' via deferred binding
[ERROR] Cannot proceed due to previous errors
------------------------
this is the snapshot:
-----------------------
package org.axed.user.client;

import org.timepedia.exporter.client.Exporter;
import com.google.gwt.core.client.GWT;

public class GenericExporterImpl implements Exporter {
    public native void export0() /*-{
      if(!$wnd.org) $wnd.org = {}
      if(!$wnd.org.axed) $wnd.org.axed = {}
      if(!$wnd.org.axed.user) $wnd.org.axed.user = {}
      $wnd.org.axed.user.AxedEvent.Generic = function() {
        if(arguments.length == 1 && (arguments[0] != null && @com.google.gwt.core.client.GWT::getTypeName(Ljava/lang/Object;)(arguments[0]) == 'org.axed.user.client.AxedEvent.Generic')) {
           this.instance = arguments[0];
        }
        else if(arguments.length == 0) {
          this.instance = @org.axed.user.client.GenericExporterImpl::___create()();
        }
      }
      var _=$wnd.org.axed.user.AxedEvent.Generic.prototype = new Object();
      _.getId= function() { var x=this.instance.@org.axed.user.client.AxedEvent.Generic::getId()();return (x);
      }
      _.common= function() { var x=this.instance.@org.axed.user.client.AxedEvent.Generic::common()();return @org.timepedia.exporter.client.ExporterBase::wrap(Lorg/timepedia/exporter/client/Exportable;)(x);
      }
      @org.timepedia.exporter.client.ExporterBase::addTypeMap(Ljava/lang/String;Lcom/google/gwt/core/client/JavaScriptObject;)("org.axed.user.client.AxedEvent.Generic", $wnd.org.axed.user.AxedEvent.Generic);}-*/;
   
    public static org.axed.user.client.AxedEvent.Generic ___create() {
      return new org.axed.user.client.AxedEvent.Generic();
    }
    public void export() {
      org.timepedia.exporter.client.Exporter export0 = (org.timepedia.exporter.client.Exporter) GWT.create(org.axed.user.client.AxedEvent.class);
      export0.export();
      export0();
    }
}
-----------------------------------------
This is the likely problematic code:
------------------------------
package org.axed.user.client;

import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Element;
import org.timepedia.exporter.client.Exportable;

/**
 * Holds all data about an event happened from the area.
 * @gwt.exportPackage axed
 * @gwt.export
 * @gwt.exportClosure
 */
public class AxedEvent implements Exportable {
    public static final int BLUR                =  1;
    public static final int CLEARUNDOREDOSTACK  =  2;
    public static final int CLICK               =  3;
    public static final int CUT                 =  4;
    public static final int FOCUS               =  5;
    public static final int FONT_SIZE_CHANGED   =  6;
    public static final int INSERT_CHAR         =  7;
    public static final int JOIN_LINE           =  8;
    public static final int KEY_PRESS           =  9;
    public static final int MOUSE_DOWN          = 10;
    public static final int MOUSE_MOVE          = 11;
    public static final int MOUSE_UP            = 12;
    public static final int MOVE_CURSOR         = 13;
    public static final int INSERT_TEXT         = 15;
    public static final int LINE_HEIGHT_CHANGED = 16;
    public static final int PASTE               = 17;
    public static final int REMOVE_CHAR         = 18;
    public static final int REMOVE_TEXT         = 19;
    public static final int REFRESH             = 20;
    public static final int REPLACE_EXPR        = 21;
    public static final int REDO                = 22;
    public static final int SCROLL              = 23;
    public static final int SET_CARET_ENABLED   = 24;
    public static final int SET_FONT            = 25;
    public static final int SPLIT_LINE          = 26;
    public static final int UNDO                = 27;

    public static final int MOVETYPE_FOLLOWUP   = 1;
    public static final int MOVETYPE_ARROW      = 2;
    public static final int MOVETYPE_CLICK      = 3;
    public static final int MOVETYPE_EXTERN     = 4;

    public static final int ATOMIC_NONE     =  0;  // do not care about atoms
    public static final int ATOMIC_UNDOREDO = -1; // this is an undo/redo event.

    public static final int ID_NONE          = 0;
    public static final int ID_ENABLE        = 1;
    public static final int ID_FONT          = 2;
    public static final int ID_MOUSE         = 3;
    public static final int ID_INTERVAL_TEXT = 4;
    public static final int ID_LINE          = 5;
    public static final int ID_FONT_CHANGE   = 6;
    public static final int ID_PNT_CHAR      = 7;
    public static final int ID_PNT_TEXT      = 8;
    public static final int ID_PNT_CURSOR    = 9;
    public static final int ID_POINTER       = 10;
    public static final int ID_KEYPRESS      = 11;
    public static final int ID_REPLACE_EXPR  = 12;
    public static final int ID_TEXT          = 13;
    public static final int MAX_ID           = 13;

    /**
     * Some events need to be undone/redone in combination.
     * (like a paste when something is selected deletes text
     * and enters text)
     * every value greater than 0 is an id, 0 or less see below.
     */
    public int atomicID;

    /**
     * Set to true if this event is to be canceled.
     */
    public boolean cancel;

    /**
     * The type of the event.
     */
    public int type;

    /**
     * The inner event
     */
    public Generic e;
 
     /**
     * @gwt.export
      * @gwt.exportClosure
     */
    public abstract class Generic implements Exportable {
        // none
        public abstract int getId();

        public final AxedEvent common() {
            return AxedEvent.this;
        }
    }

    /**
     * BLUR
     * CLEARUNDOREDOSTACK
     * FOCUS
     * REFRESH
     * REDO
     * SCROLL
     * UNDO
     * CUT
     * @gwt.export
     */
    public class None extends Generic implements Exportable {
        public static final int ID = ID_NONE;
   
        /**
         * Issues this events.
         */
        public None issue(int type) {
            AxedEvent.this.type = type;
            return this;
        }

        public int getId() { return ID; }
    };

    /**
     * SET_CARET_ENABLED
     */
    public class Enable extends Generic implements Exportable {
        public static final int ID = ID_ENABLE;

        public boolean enabled;

        public Enable issue(int type, boolean enabled) {
            AxedEvent.this.type = type;
            this.enabled = enabled;
            return this;
        }

        public int getId() { return ID; }
    };

    /**
     * SET_FONT
     */
    public class Font extends Generic implements Exportable {
        public static final int ID = ID_FONT;
       
        public int font;
       
        public Font issue(int type, int font) {
            AxedEvent.this.type = type;
            this.font = font;
            return this;
        }
       
        public int getId() { return ID; }
    };

    /**
     * CLICK
     * MOUSE_DOWN 
     * MOUSE_MOVE
     * MOUSE_UP 
     */
    public class Mouse extends Generic implements Exportable {
        public static final int ID = ID_MOUSE;
   
        public boolean shiftKey;
       
        public Element target;
   
        public int x;

        public int y;

        public Mouse issue(int type, int x, int y, Element target) {
            AxedEvent.this.type = type;
            this.x = x;
            this.y = y;
            this.target = target;
            return this;
        }
       
        public int getId() { return ID; }
    };

    /**
     * REMOVE_TEXT
     */
    public class IntervalText extends Generic implements Exportable {
        public static final int ID = ID_INTERVAL_TEXT;

        public AxedInterval iv;
       
        public String text;

        public IntervalText(AxedArea axed) {
            this.iv = new AxedInterval(axed);
        }

        public IntervalText issue(int type, AxedInterval iv) {
            AxedEvent.this.type = type;
            this.iv.set(iv);
            return this;
        }
       
        public IntervalText issue(int type, AxedPointer p1, AxedPointer p2) {
            AxedEvent.this.type = type;
            this.iv.set(p1, p2);
            return this;
        }

        public IntervalText issue(int type, int line1, int col1, int line2, int col2) {
            AxedEvent.this.type = type;
            this.iv.set(line1, col1, line2, col2);
            return this;
        }
           
        public int getId() { return ID; }
    };

    /**
     * LINE_HEIGHT_CHANGED
     */
    public class Line extends Generic implements Exportable {
        public static final int ID = ID_LINE;

        public int line;

        public Line issue(int type, int line) {
            AxedEvent.this.type = type;
            this.line = line;
            return this;
        }

        public int getId() { return ID; }
    };

    /**
     * FONT_SIZE_CHANGED
     */
    public class FontChange extends Generic implements Exportable {
        public static final int ID = ID_FONT_CHANGE;

        public Element testcase;
       
        public FontChange issue(int type, Element testcase) {
            AxedEvent.this.type = type;
            this.testcase = testcase;
            return this;
        }
       
        public int getId() { return ID; }
    }

    /**
     * INSERT_CHAR
     * REMOVE_CHAR
     */
    public class PntChar extends Generic implements Exportable {
        public static final int ID = ID_PNT_CHAR;

        public char ch;

        public AxedPointer pnt;

        public int tag;

        /**
         * Constructor.
         */
        public PntChar(AxedArea axed) {
            pnt = new AxedPointer(axed);
        }

        public PntChar issue(int type, int line, int col, char ch, int tag) {
            AxedEvent.this.type = type;
            pnt.set(line, col);
            this.ch = ch;
            this.tag = tag;
            return this;
        }

        public PntChar issue(int type, AxedPointer p, char ch, int tag) {
            AxedEvent.this.type = type;
            pnt.set(p);
            this.ch = ch;
            this.tag = tag;
            return this;
        }
       
        public int getId() { return ID; }
    }

    /**
     * INSERT_TEXT
     */
    public class PntText extends Generic implements Exportable {
        public static final int ID = ID_PNT_TEXT;

        public String text;

        /**
         * interval begin is the place to insert at.
         * Document will fill in interval end for end of
         * insert.
         */
        public AxedInterval iv;
       
        /**
         * Constructor.
         */
        public PntText(AxedArea axed) {
            iv = new AxedInterval(axed);
        }

        public PntText issue(int type, int line, int col, String text) {
            AxedEvent.this.type = type;
            iv.p1.set(line, col);
            iv.p2.invalidize();
            this.text = text;
            return this;
        }

        public PntText issue(int type, AxedPointer p, String text) {
            AxedEvent.this.type = type;
            iv.p1.set(p);
            iv.p2.invalidize();
            this.text = text;
            return this;
        }
       
        public int getId() { return ID; }
    }

    /**
     * MOVE_CURSOR
     */
    public class PntCursor extends Generic implements Exportable {
        public static final int ID = ID_PNT_CURSOR;

        public AxedPointer pnt;

        int movetype;
       
        /**
         * Constructor.
         */
        public PntCursor(AxedArea axed) {
            pnt = new AxedPointer(axed);
        }
   
        public PntCursor issue(int type, int line, int col, int movetype) {
            AxedEvent.this.type = type;
            pnt.set(line, col);
            this.movetype = movetype;
            return this;
        }

        public PntCursor issue(int type, AxedPointer p, int movetype) {
            AxedEvent.this.type = type;
            pnt.set(p);
            this.movetype = movetype;
            return this;
        }
       
        public int getId() { return ID; }
    }

    /**
     * JOIN_LINE
     * SPLIT_LINE
     */
    public class Pointer extends Generic implements Exportable {
        public static final int ID = ID_POINTER;

        public AxedPointer pnt;
       
        /**
         * Constructor.
         */
        public Pointer(AxedArea axed) {
            pnt = new AxedPointer(axed);
        }

        public Pointer issue(int type, int line, int col) {
            AxedEvent.this.type = type;
            pnt.set(line, col);
            return this;
        }

        public Pointer issue(int type, AxedPointer pnt) {
            AxedEvent.this.type = type;
            this.pnt.set(pnt);
            return this;
        }
       
        public int getId() { return ID; }
    }

    /**
     * KEY_PRESS
     */
    public class KeyPress extends Generic implements Exportable {
        public static final int ID = ID_KEYPRESS;

        public char ch;

        public boolean ctrlKey;

        public boolean shiftKey;

        public int keycode;
       
        public KeyPress issue(int type, int keycode, char ch, boolean shift, boolean control) {
            AxedEvent.this.type = type;
            this.ch = ch;
            this.keycode = keycode;
            this.shiftKey = shift;
            this.ctrlKey = control;
            return this;
        }
       
        public int getId() { return ID; }

        /**
         * TODO: for export
         */
        public int getCh() { return ch; }
    }

    /**
     * REPLACE_EXPR
     */
    public class ReplaceExpr extends Generic implements Exportable {
        public static final int ID = ID_REPLACE_EXPR;
   
        public AxedInterval iv;

        public String expr;

        public String replacement;

        public boolean global;

        public int replaceNum;
       
        /**
         * Constructor.
         */
        public ReplaceExpr(AxedArea axed) {
            iv = new AxedInterval(axed);
        }

        public ReplaceExpr issue(int type, String expr, String replacement,
                               AxedInterval iv, boolean global) {
            AxedEvent.this.type = type;
            this.expr = expr;
            this.replacement = replacement;
            this.iv.set(iv);
            this.global = global;
            this.replaceNum = 0;
            return this;
        }
       
        public int getId() { return ID; }
    }
     
    /**
     * PASTE
     */
    public class Text extends Generic implements Exportable {
        public static final int ID = ID_TEXT;

        public String text;

        public Text issue(int type, String text) {
            AxedEvent.this.type = type;
            this.text = text;
            return this;
        }
       
        public int getId() { return ID; }
    }


    /**
     * Returns the class id of a given event type
     */
    public static int getClassId(int type) {
        switch (type) {
         case BLUR :
        case CLEARUNDOREDOSTACK :
        case CUT :
        case FOCUS :
        case REFRESH :
        case REDO :
        case SCROLL :
        case UNDO :
            return None.ID;

         case SET_CARET_ENABLED :
            return Enable.ID;

         case SET_FONT :
            return Font.ID;

         case CLICK :
        case MOUSE_DOWN :
        case MOUSE_MOVE :
        case MOUSE_UP :
            return Mouse.ID;

         case REMOVE_TEXT :
            return IntervalText.ID;

         case LINE_HEIGHT_CHANGED:
            return Line.ID;

         case FONT_SIZE_CHANGED :
            return FontChange.ID;

         case INSERT_CHAR :
        case REMOVE_CHAR :
            return PntChar.ID;

         case INSERT_TEXT :
            return PntText.ID;

         case MOVE_CURSOR :
            return PntCursor.ID;

        case JOIN_LINE :
        case SPLIT_LINE :
            return Pointer.ID;

        case KEY_PRESS :
            return KeyPress.ID;

        case REPLACE_EXPR :
            return ReplaceExpr.ID;
       
        case PASTE :
            return Text.ID;
        default :
            return -1;
        }
    }

    public final None getBlur() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final None getClearUndoRedoStack() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final Mouse getClick() {
        assert e.getId() == ID_MOUSE;
        return (Mouse) e;
    }

    public final None getCut() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }
   
    public final None getFocus() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final FontChange getFontChange() {
        assert e.getId() == ID_FONT_CHANGE;
        return (FontChange) e;
    }

    public final PntChar getInsertChar() {
        assert e.getId() == ID_PNT_CHAR;
        return (PntChar) e;
    }

    public final Pointer getJoinLine() {
        assert e.getId() == ID_POINTER;
        return (Pointer) e;
    }

    public final KeyPress getKeyPress() {
        assert e.getId() == ID_KEYPRESS;
        return (KeyPress) e;
    }
   
    public final Mouse getMouseDown() {
        assert e.getId() == ID_MOUSE;
        return (Mouse) e;
    }

    public final Mouse getMouseMove() {
        assert e.getId() == ID_MOUSE;
        return (Mouse) e;
    }

    public final Mouse getMouseUp() {
        assert e.getId() == ID_MOUSE;
        return (Mouse) e;
    }

    public final PntCursor getMoveCursor() {
        assert e.getId() == ID_PNT_CURSOR;
        return (PntCursor) e;
    }
   
    public final PntText getInsertText() {
        assert e.getId() == ID_PNT_TEXT;
        return (PntText) e;
    }

    public final Line getLineHeightChanged() {
        assert e.getId() == ID_LINE;
        return (Line) e;
    }

    public final Text getPaste() {
        assert e.getId() == ID_TEXT;
        return (Text) e;
    }

    public final PntChar getRemoveChar() {
        assert e.getId() == ID_PNT_CHAR;
        return (PntChar) e;
    }

    public final IntervalText getRemoveText() {
        assert e.getId() == ID_INTERVAL_TEXT;
        return (IntervalText) e;
    }

    public final None getRefresh() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final ReplaceExpr getReplaceExpr() {
        assert e.getId() == ID_REPLACE_EXPR;
        return (ReplaceExpr) e;
    }

    public final None getRedo() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final None getScroll() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    public final Enable getSetCaretEnable() {
        assert e.getId() == ID_ENABLE;
        return (Enable) e;
    }

    public final Font getSetFont() {
        assert e.getId() == ID_FONT;
        return (Font) e;
    }

    public final Pointer getSplitLine() {
        assert e.getId() == ID_POINTER;
        return (Pointer) e;
    }

    public final None getUndo() {
        assert e.getId() == ID_NONE;
        return (None) e;
    }

    /**
     * Creates an event of 'id'-class.
     */
    public Generic create(int id, AxedArea axed) {
        switch (id) {
        case ID_NONE          : return e = new None();
        case ID_ENABLE        : return e = new Enable();
        case ID_FONT          : return e = new Font();
        case ID_MOUSE         : return e = new Mouse();
        case ID_INTERVAL_TEXT : return e = new IntervalText(axed);
        case ID_LINE          : return e = new Line();
        case ID_FONT_CHANGE   : return e = new FontChange();
        case ID_PNT_CHAR      : return e = new PntChar(axed);
        case ID_PNT_TEXT      : return e = new PntText(axed);
        case ID_PNT_CURSOR    : return e = new PntCursor(axed);
        case ID_POINTER       : return e = new Pointer(axed);
        case ID_KEYPRESS      : return e = new KeyPress();
        case ID_REPLACE_EXPR  : return e = new ReplaceExpr(axed);
        case ID_TEXT          : return e = new Text();
        default : return null;
        }
    }
   
    /**
     * getType for export
     */
    public int getType() {
        return type;
    }
}
-------------------
For now I guess I'll just add some wrapper classes to export which can hide the innerclasses interface...

Kind regards, Axel

BTW: How about GWT 1.5? Will I be able to export stuff in 1.5 also?

Ray Cromwell

unread,
Apr 29, 2008, 3:43:23 PM4/29/08
to Google Web Toolkit, Axel Kittenberger

I think it may not handle inner classes at all, I'll fix this on
Thursday, I'm out of town right now. For 1.5, I'm likely going to
rewrite significant portions of it to not only use 1.5 Annotations,
but to leverage linkers to allow JSDoc generation, as well as provide
a deferred binding to switch off exports when not used (make them zero
cost)

-Ray
> x=this.instan...@org.axed.user.client.AxedEvent.Generic::getId()();return
> (x);
>       }
>       _.common= function() { var
> x=this.instan...@org.axed.user.client.AxedEvent.Generic::common()();return
> @org.timepedia.exporter.client.ExporterBase::wrap(Lorg/timepedia/exporter/c lient/Exportable;)(x);
>       }
>
> @org.timepedia.exporter.client.ExporterBase::addTypeMap(Ljava/lang/String;L com/google/gwt/core/client/JavaScriptObject;)("org.axed.user.client.AxedEve nt.Generic",
> On Wed, Jan 30, 2008 at 7:58 PM, Ray Cromwell <cromwell...@gmail.com> wrote:
> > Generators are different than normal GWT modules in the sense that
> > they include source that must be translatable to Javascript (in
> > .client package) and stuff that is run as Java code inside the
> > compiler and must be included as compiled .class files (the .rebind
> > package). Basically, you need to compile the gwt-exporter, and include
> > both source and .class files in a JAR and then put that in the
> > classpath. I am not in the office right now, but in 2-3 hours I can
> > upload a compiled JAR to the project page for you.
>
> > -Ray
>
> > > f...@allen-sauer.com

Ray Cromwell

unread,
May 1, 2008, 7:26:53 PM5/1/08
to Axel Kittenberger, Google Web Toolkit
Axel,
  I checked in a fix to the codesite project. Here is a JAR file containing a 1.01 version that should solve the problem with inner classes. I used a simple test case, could you test it out and see if it works with your code?

Here's my test (in Employee class)
/**
   * @gwt.export
   */
  public InnerTest getInnerTest() {
    return new InnerTest();
  }

  /**
   * @gwt.export
   */
  public static class InnerTest implements Exportable {

    public InnerTest() {
    }

    public int getFoo() {
      return 10;
    }
  }


Unless the exportPackage is overriden on the inner class, the inner class will be exported into the same package as the enclosing class (i.e. it's exportPackage or Java package)

-Ray

On Tue, Apr 29, 2008 at 1:10 PM, Axel Kittenberger <axe...@gmail.com> wrote:
Don't rush because of me :) I got a nice workaround already... However I'm glad to hear gwtexporter is still alive, and I can trust in the future on being able to switch with it to 1.5...

The workaround fixes also another thing. One thing I did with the exporter was getting some class, and add it as interface to be regulary called by another class. Strangly the performance of that class somtimes quite worse compared when "linked" in javascript to a situation where this link was created from within GWT.

Kind regards,
Axel
gwtexporter.jar
Reply all
Reply to author
Forward
0 new messages