Tuesday, March 19, 2013

Re: Sporadic errors during compilation, Checking type argument 0 of type 'java.util.Arrays.ArrayList, no default constructor.

I had a similar problem. 
I have a bean that has to pass through the layer gwt-rpc in which I declare a getter method that returns a collection of items.
Within the method I instantiate a generic type arraylist. I solved only by explicitly cast to the actual datatype of the getter method.
This is the code the generates the error:

public class ItemTx implements Item {
  ...
}

public class Order implements Serial {
  private List<ItemTx> items;
  public List<Item> getItems() {
    return CollectionUtils.createList(Item.class, items, ItemTx.class);
  }
}

public class CollectionUtils {
  public static <I extends Serializable, D extends I> List<I> createList(Class<I> itemInterfaceClass, List<D> items, Class<D> descendantClass) {
    List<I> result;
    ...
    result = new ArrayList<I>();
    ...
    return result;
  }
}

This is the correction that works for me:

public class Order implements Serial {
  public List<Item> getItems() {
    return (List<Item>)CollectionUtils.createList(Item.class, items, ItemTx.class);
  }
}

Best regards
Marcello De Marco

Il giorno domenica 26 febbraio 2012 02:22:47 UTC+1, Dan ha scritto:
Hi all,

I have an RPC called DeviceService which passes around some
DeviceConfiguration s. DeviceConfiguration is the super class of a
chain of inheritance, all of which are immutable. In roughly half of
the compiles I do (in hosted mode or otherwise) I get the following
snippet:

      Computing all possible rebind results for
'com.redbite.device.gwt.client.DeviceService'
         Rebinding com.redbite.device.gwt.client.DeviceService
            Invoking generator
com.google.gwt.user.rebind.rpc.ServiceInterfaceProxyGenerator
               Generating client proxy for remote service interface
'com.redbite.device.gwt.client.DeviceService'
                  Analyzing
'com.redbite.device.gwt.client.DeviceService' for serializable types
                     Analyzing methods:
                        public abstract void
addConfiguration(com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>
conf) throws com.redbite.common.gwt.client.RPCException
                           Parameter:
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>
conf
 
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>
                                 Verifying instantiability
 
com.redbite.device.configobjects.device.Alien9900Configuration
                                       Analyzing the fields of type
'com.redbite.device.configobjects.device.DeviceConfiguration<com.redbite.device.configobjects.device.AlienDeviceConfiguration.AlienDeviceProperty>'
that qualify for serialization
                                          private java.util.Map<T,
java.io.Serializable> properties
                                             java.util.Map<T,
java.io.Serializable>
                                                Verifying
instantiability
 
java.util.TreeMap<T, java.io.Serializable>
                                                      Checking
parameters of 'java.util.TreeMap<T, java.io.Serializable>'
                                                         Checking type
argument 1 of type 'java.util.TreeMap<K, V>' because it is directly
exposed in this type or in one of its subtypes
 
java.io.Serializable
 
Verifying instantiability
 
java.util.LinkedList<? extends java.lang.Object>
 
[WARN] Checking all subtypes of Object which qualify for serialization
                  Checking type argument 0 of type
'java.util.Arrays.ArrayList<E>' because it is exposed as an array with
a maximum dimension of 1 in this type or one of its subtypes (reached
via com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  Checking type argument 0 of type
'java.util.Arrays.ArrayList<E>' because it is exposed as an array with
a maximum dimension of 1 in this type or one of its subtypes (reached
via com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  Checking type argument 0 of type
'java.util.Arrays.ArrayList<E>' because it is exposed as an array with
a maximum dimension of 1 in this type or one of its subtypes (reached
via com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  Checking type argument 0 of type
'java.util.Arrays.ArrayList<E>' because it is exposed as an array with
a maximum dimension of 1 in this type or one of its subtypes (reached
via com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  Checking type argument 0 of type
'java.util.Arrays.ArrayList<E>' because it is exposed as an array with
a maximum dimension of 1 in this type or one of its subtypes (reached
via com.redbite.device.configobjects.device.DeviceConfiguration<?
extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.CodeDownloadException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.CodeDownloadException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.CodeDownloadException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.core.client.CodeDownloadException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.core.client.CodeDownloadException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.CodeDownloadException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)


followed by very many similar ERRORs concerning many com.google.gwt
classes's lack of a nullary constructor.
I've been over the serializabilty of DeviceConfiguration with a fine-
toothed comb and not noticed anything alarming, and as I said the
compile works around 50% of the time (also the RPC behaves as expected
when deployed).

Does anyone have a thought on what to investigate next? Your help will
be much appreciated,
Dan.

The rest of the error:


                  [ERROR]
com.google.gwt.core.client.JavaScriptException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.JavaScriptException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.JavaScriptException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.JavaScriptException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.JavaScriptException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.core.client.JavaScriptException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpDownloadFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.core.client.impl.AsyncFragmentLoader.HttpInstallFailure
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.editor.client.adapters.ListEditorWrapper<T, E> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.editor.client.adapters.ListEditorWrapper<T, E> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.editor.client.adapters.ListEditorWrapper<T, E> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.editor.client.adapters.ListEditorWrapper<T, E> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.editor.client.adapters.ListEditorWrapper<T, E> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.event.shared.UmbrellaException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.event.shared.UmbrellaException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.event.shared.UmbrellaException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.event.shared.UmbrellaException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                     [ERROR]    subtype
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.event.shared.UmbrellaException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.event.shared.UmbrellaException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestPermissionException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.http.client.RequestTimeoutException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.i18n.client.impl.ConstantMap
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.logging.impl.LevelImplRegular.LevelWithExposedConstructor
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.resources.client.ResourceException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.resources.client.ResourceException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.resources.client.ResourceException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.resources.client.ResourceException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.resources.client.ResourceException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.resources.client.ResourceException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.safehtml.shared.OnlyToBeUsedInGeneratedCodeStringBlessedAsSafeHtml
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.CommandCanceledException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.CommandCanceledException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.CommandCanceledException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.CommandCanceledException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.CommandCanceledException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.CommandCanceledException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.IncrementalCommandCanceledException is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.IncrementalCommandCanceledException is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.IncrementalCommandCanceledException has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.IncrementalCommandCanceledException is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.IncrementalCommandCanceledException is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.IncrementalCommandCanceledException is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.InvocationException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.InvocationException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.InvocationException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.InvocationException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.rpc.StatusCodeException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.AttachDetachException is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.ChangeListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.ChangeListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR] com.google.gwt.user.client.ui.ClickListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.ClickListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DecoratedTabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabPanel.UnmodifiableTabBar<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DecoratedTabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DecoratedTabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DecoratedTabPanel is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection has
no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingChangeListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingClickListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection has
no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.DialogBox is
not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.FastStringMap<T> is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.FocusListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.FocusListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.FocusListenerAdapter is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingFocusListenerCollection is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR] com.google.gwt.user.client.ui.FormHandler
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.FormHandler is not instantiable
                  [ERROR]
com.google.gwt.user.client.ui.KeyboardListener has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.KeyboardListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DecoratedTabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DelegatingKeyboardListenerCollection is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                     [ERROR]    subtype
com.google.gwt.user.client.ui.KeyboardListenerAdapter is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabPanel.UnmodifiableTabBar<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR]
com.google.gwt.user.client.ui.KeyboardListenerAdapter is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.LoadListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.LoadListener is not instantiable
                  [ERROR] com.google.gwt.user.client.ui.MenuBar is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.MouseListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.MouseListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.MouseListenerAdapter is not assignable
to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DialogBox is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.MouseListenerAdapter is not assignable
to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.MouseWheelListener has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.MouseWheelListener is not instantiable
                  [ERROR] com.google.gwt.user.client.ui.PopupListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.PopupListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.MenuBar is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.SuggestBox.SuggestionMenu is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.PrefixTree is
not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.PrefixTree is
not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.PrefixTree is
not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.ScrollListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.ScrollListener is not instantiable
                  [ERROR]
com.google.gwt.user.client.ui.SuggestBox.SuggestionMenu is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.TabBar is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.TabBar is not
assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.TabListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabListener is not instantiable
                     [ERROR]    subtype
com.google.gwt.user.client.ui.DecoratedTabPanel is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TabPanel is not assignable to
'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.TabPanel is
not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' or
'java.io.Serializable' nor does it have a custom field serializer
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.TabPanel.UnmodifiableTabBar<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.user.client.ui.TabPanel.UnmodifiableTabBar<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.user.client.ui.TableListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TableListener is not instantiable
                  [ERROR] com.google.gwt.user.client.ui.TreeListener
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.user.client.ui.TreeListener is not instantiable
                  [ERROR]
com.google.gwt.view.client.ListDataProvider<T>.ListWrapper<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.view.client.ListDataProvider<T>.ListWrapper<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.view.client.ListDataProvider<T>.ListWrapper<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.view.client.ListDataProvider<T>.ListWrapper<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.view.client.ListDataProvider<T>.ListWrapper<> is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.DOMException is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.DOMException is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.DOMException is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.DOMException is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.AttrImpl is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.xml.client.impl.CDATASectionImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.CommentImpl
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.DOMItem is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.DOMItem has
no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.DOMItem is not default instantiable (it
must have a zero-argument constructor or no constructors at all) and
has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.CommentImpl is not default instantiable
(it must have a zero-argument constructor or no constructors at all)
and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.DocumentFragmentImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.AttrImpl is not default instantiable
(it must have a zero-argument constructor or no constructors at all)
and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.NodeImpl is not default instantiable
(it must have a zero-argument constructor or no constructors at all)
and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.CDATASectionImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.DocumentImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.ElementImpl is not default instantiable
(it must have a zero-argument constructor or no constructors at all)
and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.EntityReferenceImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.NodeListImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.CharacterDataImpl is not instantiable
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.ProcessingInstructionImpl is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.TextImpl is not default instantiable
(it must have a zero-argument constructor or no constructors at all)
and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.google.gwt.xml.client.impl.NamedNodeMapImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.xml.client.impl.DocumentFragmentImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.DocumentImpl
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.ElementImpl
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.xml.client.impl.EntityReferenceImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.xml.client.impl.NamedNodeMapImpl is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.NodeImpl is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.NodeListImpl
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR]
com.google.gwt.xml.client.impl.ProcessingInstructionImpl is not
default instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.google.gwt.xml.client.impl.TextImpl is
not default instantiable (it must have a zero-argument constructor or
no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.smartgwt.client.core.JsObject.SGWT_WARN
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.smartgwt.client.core.JsObject.SGWT_WARN
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.smartgwt.client.core.JsObject.SGWT_WARN
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                     [ERROR]    subtype
com.smartgwt.client.core.JsObject.SGWT_WARN is not default
instantiable (it must have a zero-argument constructor or no
constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
                  [ERROR] com.smartgwt.client.core.JsObject.SGWT_WARN
is not default instantiable (it must have a zero-argument constructor
or no constructors at all) and has no custom serializer. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
                  [ERROR] com.smartgwt.client....

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home


Real Estate