Package org.xwiki.script.wrap
Class AbstractWrappingObject<T>
- java.lang.Object
-
- org.xwiki.script.wrap.AbstractWrappingObject<T>
-
- Type Parameters:
T
- the type of the wrapped object
public abstract class AbstractWrappingObject<T> extends Object
Wrap an Object.- Since:
- 4.0M1
- Version:
- $Id: 2e4257344ff5db58fc842bf7ef7cce7473bcf68c $
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractWrappingObject()
A default constructor allowing to set the wrapped object later.AbstractWrappingObject(T wrapped)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
protected T
getWrapped()
int
hashCode()
protected T
resolveWrapped()
String
toString()
-
-
-
Constructor Detail
-
AbstractWrappingObject
public AbstractWrappingObject(T wrapped)
- Parameters:
wrapped
- the wrapped object
-
AbstractWrappingObject
protected AbstractWrappingObject()
A default constructor allowing to set the wrapped object later.- Since:
- 12.9RC1
-
-