Node is not $1, that is LLMM$Node
$1 is declared inside LLMM#get(K key):
public List<V> get(final @Nullable K key) {
return new AbstractSequentialList<V>() {
public int size() {
return keyCount.count(key);
}
public ListIterator<V> listIterator(int index) {
return new ValueForKeyIterator(key, index);
}
};
}
The AbstractSequentialList<V> is not serializable.
Martijn
On Mon, Aug 18, 2008 at 12:37 PM, TH Lim <[EMAIL PROTECTED]> wrote:
>
> Alright, if I pass LinkedListMultiMap instance into my IDataProvider
> implementation, MyDataProvider, Wicket is able to persist. Whereas, if I
> pass the List instance from LinkedListMultiMap.get(...), Wicket will throw
> the unserializable exception. I presume something in LinkedListMultimap$1
> made it not serializable. My initial thought that LinkedListMultimap$1 was a
> serializable List was wrong.
> --
> View this message in context:
> http://www.nabble.com/Unable-to-serialize-class-com.google.common.collect.LinkedListMultimap%241-tp19027449p19029050.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.3.4 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]