return null;
}
public Object getProperty(Object object, QName name) {
Period timePeriod = (Period) object;
if (timePeriod == null) {
return null;
}
if (name.getLocalPart().equals("BeginPosition")) {
return timePeriod.getBeginning().getPosition();
}
if (name.getLocalPart().equals("EndPosition")) {
return timePeriod.getEnding().getPosition();
}
return null;
}