org.apache.wicket
Class MetaDataKey<T>

java.lang.Object
  extended by org.apache.wicket.MetaDataKey<T>
Type Parameters:
T - The object that is stored
All Implemented Interfaces:
Serializable, IClusterable

public abstract class MetaDataKey<T>
extends Object
implements IClusterable

A key to a piece of metadata associated with a Component at runtime. The key contains type information that can be used to check the type of any metadata value for the key when the value is set on the given Component. MetaDataKey is abstract in order to force the creation of a subtype. That subtype is used to test for identity when looking for the metadata because actual object identity would suffer from problems under serialization. So, the correct way to declare a MetaDataKey is like this: public static MetaDataKey ROLE = new MetaDataKey(Role.class) { }

Author:
Jonathan Locke
See Also:
Serialized Form

Constructor Summary
MetaDataKey()
          Constructor.
 
Method Summary
 boolean equals(Object obj)
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MetaDataKey

public MetaDataKey()
Constructor.

Method Detail

hashCode

public int hashCode()
Overrides:
hashCode in class Object
See Also:
Object.hashCode()

equals

public boolean equals(Object obj)
Overrides:
equals in class Object
See Also:
Object.equals(java.lang.Object)

toString

public String toString()
Overrides:
toString in class Object
See Also:
Object.toString()


Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.