296297298299300301302303304305306
} } DockStation station = dockable.getDockParent(); if( station == null ) return null; dockable = station.asDockable(); } return null; } /**
211212213214215216217218219220221
if( area.isChild( dockable ) ){ return area.getUnmaximizedMode(); } } DockStation parent = dockable.getDockParent(); dockable = parent == null ? null : parent.asDockable(); } return null; } /**
464465466467468469470471472473474
} } } } mutableDockable = parent.asDockable(); parent = mutableDockable == null ? null : mutableDockable.getDockParent(); } } }); }
496497498499500501502503504505506
while( parent != null ){ MaximizedModeArea area = getMaximizeArea( parent ); if( area != null ) return area; dockable = parent.asDockable(); if( dockable == null ){ parent = null; } else{ parent = dockable.getDockParent();
450451452453454455456457458459460
for( M mode : modes() ){ if( mode.isCurrentMode( dockable )) return mode; } DockStation station = dockable.getDockParent(); dockable = station == null ? null : station.asDockable(); } return null; }
5152535455565758596061
CStationPerspective station = cparent.asStation(); if( station != null ){ return station; } } dockable = parent.asDockable(); } return null; }
134135136137138139140141142143144
if( mode.isCurrentMode( dockable )){ return mode.getIdentifier(); } } PerspectiveStation parent = dockable.getParent(); dockable = parent == null ? null : parent.asDockable(); } return null; } /**
172173174175176177178179180181182
CStationPerspective station = ((CommonElementPerspective)parent).getElement().asStation(); if( perspective.getStation( station.getUniqueId() ) != null ){ return station; } } dockable = parent.asDockable(); } return null; }