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

744 views
Skip to first unread message

Dan

unread,
Feb 25, 2012, 8:22:47 PM2/25/12
to Google Web Toolkit
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.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]
de.novanic.eventservice.client.config.ConfigurationException 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]
de.novanic.eventservice.client.config.ConfigurationException 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]
de.novanic.eventservice.client.config.ConfigurationException has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype
de.novanic.eventservice.client.config.ConfigurationException 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]
de.novanic.eventservice.client.config.ConfigurationException 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]
de.novanic.eventservice.client.config.ConfigurationException 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]
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
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]
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
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]
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
has no available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
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]
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
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]
de.novanic.eventservice.client.event.RemoteEventServiceRuntimeException
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] java.lang.Class<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] java.lang.Class<T> has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.lang.Class<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] java.lang.Class<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] java.lang.Class<T> has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.lang.Class<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>),
etc.
[ERROR] In order to produce smaller client-side
code, 'Object' is not allowed; please use a more specific type
(reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR]
java.lang.annotation.IncompleteAnnotationException 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]
java.lang.annotation.IncompleteAnnotationException 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]
java.lang.annotation.IncompleteAnnotationException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype
java.lang.annotation.IncompleteAnnotationException 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]
java.lang.annotation.IncompleteAnnotationException 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]
java.lang.annotation.IncompleteAnnotationException 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] java.text.ParseException 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] java.text.ParseException 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] java.text.ParseException has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.text.ParseException 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] java.text.ParseException 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] java.text.ParseException 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] java.util.AbstractHashMap<K, V>.EntrySet<>
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] java.util.AbstractHashMap<K, V>.EntrySet<>
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] java.util.AbstractHashMap<K, V>.EntrySet<>
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] java.util.AbstractHashMap<K, V>.EntrySet<>
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] java.util.AbstractList.SubList<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] java.util.AbstractList.SubList<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] java.util.AbstractList.SubList<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] java.util.AbstractList.SubList<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] java.util.AbstractList.SubList<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]
java.util.Collections.UnmodifiableCollection<T> 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]
java.util.Collections.UnmodifiableCollection<T> 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]
java.util.Collections.UnmodifiableCollection<T> 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] java.util.Collections.UnmodifiableList<T> 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] java.util.Collections.UnmodifiableList<T> 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] java.util.Collections.UnmodifiableList<T> 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] java.util.Collections.UnmodifiableList<T> 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] java.util.Collections.UnmodifiableList<T> 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]
java.util.Collections.UnmodifiableMap.UnmodifiableEntrySet<K, V> 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]
java.util.Collections.UnmodifiableMap.UnmodifiableEntrySet<K, V> 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]
java.util.Collections.UnmodifiableMap.UnmodifiableEntrySet<K, V> 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]
java.util.Collections.UnmodifiableMap.UnmodifiableEntrySet<K, V> 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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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] java.util.Collections.UnmodifiableMap<K, V>
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]
java.util.Collections.UnmodifiableRandomAccessList<T> 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]
java.util.Collections.UnmodifiableRandomAccessList<T> 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]
java.util.Collections.UnmodifiableRandomAccessList<T> 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]
java.util.Collections.UnmodifiableRandomAccessList<T> 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]
java.util.Collections.UnmodifiableRandomAccessList<T> 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] java.util.Collections.UnmodifiableSet<T> 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] java.util.Collections.UnmodifiableSet<T> 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] java.util.Collections.UnmodifiableSet<T> 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] java.util.Collections.UnmodifiableSet<T> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedMap<K, V> 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]
java.util.Collections.UnmodifiableSortedSet<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]
java.util.Collections.UnmodifiableSortedSet<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]
java.util.Collections.UnmodifiableSortedSet<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]
java.util.Collections.UnmodifiableSortedSet<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] java.util.Comparator<T> has no available
instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.util.Comparator<T> is not
instantiable
[ERROR] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V> 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] java.util.EnumMap<K, V>.EntrySet<> 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] java.util.EnumMap<K, V>.EntrySet<> 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] java.util.EnumMap<K, V>.EntrySet<> 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] java.util.EnumMap<K, V>.EntrySet<> 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] java.util.EnumSet.EnumSetImpl<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] java.util.EnumSet.EnumSetImpl<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] java.util.EnumSet.EnumSetImpl<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] java.util.EnumSet.EnumSetImpl<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] java.util.LinkedHashMap<K, V>.EntrySet<> 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] java.util.LinkedHashMap<K, V>.EntrySet<> 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] java.util.LinkedHashMap<K, V>.EntrySet<> 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] java.util.LinkedHashMap<K, V>.EntrySet<> 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] java.util.LinkedList.Node<E> 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] java.util.LinkedList.Node<E> has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.util.LinkedList.Node<E>
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] java.util.MissingResourceException 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] java.util.MissingResourceException 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] java.util.MissingResourceException has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype
java.util.MissingResourceException 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] java.util.MissingResourceException 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] java.util.MissingResourceException 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] java.util.PriorityQueue<E> 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] java.util.PriorityQueue<E> 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] java.util.PriorityQueue<E> 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] java.util.TreeMap.SubMapType is not
accessible from a class in its same package; it will be excluded from
the set of serializable types (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] java.util.TreeMap.SubMapType is not
accessible from a class in its same package; it will be excluded from
the set of serializable types (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] java.util.TreeMap.SubMapType has no
available instantiable subtypes. (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] subtype java.util.TreeMap.SubMapType
is not accessible from a class in its same package; it will be
excluded from the set of serializable types (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>),
etc.
[ERROR] java.util.TreeMap.SubMapType is not
accessible from a class in its same package; it will be excluded from
the set of serializable types (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] java.util.TreeMap.SubMapType is not
accessible from a class in its same package; it will be excluded from
the set of serializable types (reached via
com.redbite.device.configobjects.device.DeviceConfiguration<? extends
com.redbite.device.configobjects.device.DeviceConfiguration.DeviceProperty>)
[ERROR] java.util.TreeMap<K, V>.EntrySet<> 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] java.util.TreeMap<K, V>.EntrySet<> 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] java.util.TreeMap<K, V>.EntrySet<> 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] java.util.TreeMap<K, V>.EntrySet<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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] java.util.TreeMap<K, V>.SubMap<> 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>)
[WARN] For the following type(s), generated source was never
committed (did you forget to call commit()?)
[WARN] com.redbite.device.gwt.client.DeviceService_Proxy
[ERROR] Errors in 'file:/Users/dan/Code/template.web/src/main/gwt/
com/redbite/gwt/template/pages/DanielsTestPage.java'
[ERROR] Line 28: Failed to resolve
'com.redbite.device.gwt.client.DeviceService' via deferred binding

Dan

unread,
Feb 27, 2012, 8:08:56 AM2/27/12
to Google Web Toolkit
Hi, sorry about that formatting. I had no idea it would be so
horrific!
> ...
>
> read more »

Thomas Broyer

unread,
Feb 27, 2012, 8:59:02 AM2/27/12
to google-we...@googlegroups.com


On Sunday, February 26, 2012 2:22:47 AM UTC+1, Dan wrote:

[WARN] Checking all subtypes of Object which qualify for serialization


This is your problem.

Dan

unread,
Mar 6, 2012, 8:42:30 AM3/6/12
to google-we...@googlegroups.com
Sorry for the delay in thanking you for your reply. I understand that Objects cannot be serialized, which is why I can't understand the error message.

Some more information:

DeviceConfiguration is has a generic type, T, which extends DeviceProperty which is an interface. The definition of the field 'properties' is as follows:

    private Map<T, Serializable> properties = new HashMap<T, Serializable>();

So how does the compiler *sometimes* get from HashMap<T, Serializable> to TreeMap<K,V> -> Serializable -> Object?

Thanks again,
Dan.

MarDeMar

unread,
Mar 21, 2013, 7:33:52 AM3/21/13
to google-we...@googlegroups.com
Unfortunately even this is not the solution!
I confirm that the behavior of the gwt compiler seems to be rather random.
Currently I only note that making a gwt compile only after a complete maven clean, it seems that it fixes the problem.
Anyone has the same problem?

Marcello De Marco

Il giorno martedì 19 marzo 2013 23:55:29 UTC+1, MarDeMar ha scritto:
ERRATA CORRIGE

The solution for me is more trivial than it seemed.
I had this error using bean with a list property not initialized.
For example:

public class Order implements Serializable {
  private List<Item> items;
  ...
}

Simply initializing the list property the error disappears:

public class Order implements Serializable {
  private List<Item> items = new ArrayList<Item>();
  ...
}

For you I believe the problem is that you initialize the property always with a generic and this maybe causes confusion for the generator.

Regards
Marcello De Marco

MarDeMar

unread,
Mar 28, 2013, 4:08:40 AM3/28/13
to google-we...@googlegroups.com
Finally I find the solution!
In my dto I declared a property of type class X in which I declared an enum in this manner:

  public enum Type {
    SHORT ("S"), 
    MEDIUM ("M"), 
    LONG ("L");
    private String code;
    private Type(String code) {
      this.code = code;
    }
    public String getCode() {
      return code;
    }
  }

When I replaced the enum with constants all the strange behaviors of the gwt rpc generator disappeared.
I dit not test more in depth to find the right declaration of the enum, but now I know that this was the cause.
I could only point out to the GWT team that maybe it would be better to improve the error messages to help the developer to find the right field not compliant to the serialization policies.

Best regards
Marcello De Marco


Reply all
Reply to author
Forward
0 new messages