Class Accessible
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- All Implemented Interfaces:
Serializable
,Descriptive
- Direct Known Subclasses:
GeneralTask
,PropertyHolder
public abstract class Accessible extends Group
An
Accessible
provides Reflection-based read- and write-access to the underlying (usually declared as its own fields - but not necessarily) instances ofProperty
and a recursive access to otherAccessible
, which may have a family relationship withthis
Accessible
via theUpwardsNavigable
implementation. It also defines its own list ofSaveable
s.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Accessible()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description List<Accessible>
accessibleChildren()
Selects only thoseAccessible
s, the parent of which isthis
.List<Property>
genericProperties()
Tries to access the property getter methods in thisAccessible
, which should be declared as no-argument methods with a specific return type.Property
genericProperty(Property sameClass)
Recursively searches for aProperty
from the non-unique list of generic properties in thisAccessible
by comparing its class tosameClass.getClass()
.Set<NumericProperty>
numericProperties()
Tries to access the property getter methods in thisAccessible
, which should be declared as no-argument methods with a specific return type.NumericProperty
numericProperty(NumericPropertyKeyword type)
Recursively searches for aNumericProperty
from the unique set of numeric properties in thisAccessible
by comparing itsNumericPropertyKeyword
totype
.Property
property(Property similar)
Searches for aProperty
in thisAccessible
that lookssimilar
to the argument.abstract void
set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)NumericPropert
ies in subclasses ofAccessible
.void
update(NumericProperty p)
Set a NumericProperty contained in this Accessible or any of its accessible childern, using the NumericPropertyKeyword of the argument as identifier and its value.void
update(Property property)
Runs recursive search for a property in thisAccessible
object with the same identifier asproperty
and sets its value to the value of theproperty
parameter.Ifproperty
is aNumericProperty
, uses itsNumericPropertyKeyword
for identification.-
Methods inherited from class pulse.util.Group
access, children, contents, getDescriptor, getSimpleName, subgroups
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, describe, getHierarchyListeners, getParent, identify, initListeners, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
property
public Property property(Property similar)
Searches for a
Property
in thisAccessible
that lookssimilar
to the argument. Determines whether thesimilar
is aNumericProperty
or a generic property and calls the suitable method in this class.- Parameters:
similar
- a generic or a numericProperty
- Returns:
- the matching property of this
Accessible
-
numericProperties
public Set<NumericProperty> numericProperties()
Tries to access the property getter methods in thisAccessible
, which should be declared as no-argument methods with a specific return type.- Returns:
- This will return a unique
Set<NumericProperty>
containing all instances ofNumericProperty
belonging to thisAccessible
. This set will not contain any duplicate elements by definition.
-
genericProperties
public List<Property> genericProperties()
Tries to access the property getter methods in thisAccessible
, which should be declared as no-argument methods with a specific return type.- Returns:
- This will return a
List<Property>
containing all properties belonging to thisAccessible
, which are not assignable from theNumericProperty
class.
-
numericProperty
public NumericProperty numericProperty(NumericPropertyKeyword type)
Recursively searches for a
NumericProperty
from the unique set of numeric properties in thisAccessible
by comparing itsNumericPropertyKeyword
totype
. This will search for this property through the children of this object, through the children of their children, etc.- Parameters:
type
- the type of theNumericProperty
.- Returns:
- the respective
NumericProperty
, ornull
if nothing is found. - See Also:
numericProperties()
-
genericProperty
public Property genericProperty(Property sameClass)
Recursively searches for a
Property
from the non-unique list of generic properties in thisAccessible
by comparing its class tosameClass.getClass()
. This will search for this property through the children of this object, through the children of their children, etc.- Parameters:
sameClass
- the class identifying thisProperty
.- Returns:
- the respective
Property
, ornull
if nothing is found. - See Also:
genericProperties()
-
set
public abstract void set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)
NumericPropert
ies in subclasses ofAccessible
. Typically this involves aswitch
statement that goes through the different options for thetype
and invokes differentset(...)
methods to update the matchingNumericProperty
withproperty
.- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.property
- the property, which contains new information.
-
update
public void update(Property property)
Runs recursive search for a property in thisAccessible
object with the same identifier asproperty
and sets its value to the value of theproperty
parameter.Ifproperty
is aNumericProperty
, uses itsNumericPropertyKeyword
for identification. For generic properties, callsattemptUpdate
.- Parameters:
property
- theProperty
, which will update a similar property of thisAccessible
.
-
update
public void update(NumericProperty p)
Set a NumericProperty contained in this Accessible or any of its accessible childern, using the NumericPropertyKeyword of the argument as identifier and its value.- Parameters:
p
- a NumericProperty
-
accessibleChildren
public List<Accessible> accessibleChildren()
Selects only those
Accessible
s, the parent of which isthis
. Note that allAccessible
s are required to explicitly adopt children by calling thesetParent()
method.- Returns:
- a
List
of children that thisAccessible
has adopted. - See Also:
Group.children()
-
-