* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The active-state property.
*/
public FoValue traitActiveState(final FObj fobj, final FoContext context) {
final PdActiveState property = (PdActiveState) getProperty(
FoProperty.ACTIVE_STATE);
if (property != null) {
return property.getValue(context, fobj);
}
return null;
}