public class Personality<T> extends Object
Implementation
factories that can generate instances of the facet represented
by the Class.Constructor and Description |
---|
Personality()
base constructor, does nothing [except implicitly create _types_]
|
Personality(Personality<T> other)
initialise this personality with the bindings from _other_
|
Modifier and Type | Method and Description |
---|---|
<X extends T> |
add(Class<X> interf,
Implementation impl)
Add a new interface and its implementation to this Personality.
|
Personality<T> |
add(Personality<T> p)
extend this personality by adding in all the mappings from the argument _p_.
|
Personality<T> |
copy()
create a new Personality copying this one; the _types_ state is
copied, not shared.
|
<X extends T> |
getImplementation(Class<X> t)
get the implementation for the specified type, returning null if there
isn't one available.
|
<X extends T> |
newInstance(Class<X> interf,
Node n,
EnhGraph that)
make a new instance of a type _interf_ based on the node _n_ and the
polymorphic _that_; use the implementation wrapper for _interf_ in
_types_.
|
public Personality()
public Personality(Personality<T> other)
public <X extends T> Personality<T> add(Class<X> interf, Implementation impl)
interf
- The interface to add, expressed as a Type object.impl
- A way of implementing _interf_.public Personality<T> copy()
public <X extends T> Implementation getImplementation(Class<X> t)
public Personality<T> add(Personality<T> p)
Licenced under the Apache License, Version 2.0