return false;
}
public boolean ignoreChildren( PerspectiveStation station ){
if( station instanceof CommonElementPerspective ){
CStationPerspective perspective = ((CommonElementPerspective)station).getElement().asStation();
if( perspective != null ){
return perspective.isWorkingArea();
}
}
return false;
}
public boolean ignoreElement( DockElement element ) {
if( element instanceof CommonDockable ){
CDockable cdockable = ((CommonDockable)element).getDockable();
if( cdockable.getWorkingArea() != null )
return true;
}
return false;
}
public boolean ignoreElement( PerspectiveElement element ){
if( element instanceof CommonElementPerspective ){
CDockablePerspective perspective = ((CommonElementPerspective)element).getElement().asDockable();
if( perspective != null ){
return perspective.getWorkingArea() != null;
}
}
return false;
}
});