use of org.opencastproject.smil.entity.SmilObjectImpl in project opencast by opencast.
the class SmilMediaElementImpl method putAllChilds.
/**
* {@inheritDoc}
*/
@Override
public void putAllChilds(List<SmilObject> elements) {
for (SmilObject child : getParams()) {
elements.add(child);
((SmilObjectImpl) child).putAllChilds(elements);
}
}
use of org.opencastproject.smil.entity.SmilObjectImpl in project opencast by opencast.
the class SmilMediaContainerImpl method putAllChilds.
/**
* {@inheritDoc}
*/
@Override
public void putAllChilds(List<SmilObject> elements) {
for (SmilObject child : getElements()) {
elements.add(child);
((SmilObjectImpl) child).putAllChilds(elements);
}
}
use of org.opencastproject.smil.entity.SmilObjectImpl in project opencast by opencast.
the class SmilMediaParamGroupImpl method putAllChilds.
/**
* {@inheritDoc}
*/
@Override
public void putAllChilds(List<SmilObject> elements) {
for (SmilObject child : getParams()) {
elements.add(child);
((SmilObjectImpl) child).putAllChilds(elements);
}
}
Aggregations