Package bibliothek.gui.dock.control.focus

Examples of bibliothek.gui.dock.control.focus.FocusHistory


  public DefaultCFocusHistory( CControl control ){
    this.control = control;
  }
 
  public CDockable[] getHistory(){
    FocusHistory history = control.getController().getFocusHistory();
    List<CDockable> result = new ArrayList<CDockable>();
    Dockable[] dockables = history.getHistory();
    for( int i = dockables.length-1; i >= 0; i-- ){
      Dockable dockable = dockables[i];
      if( dockable instanceof CommonDockable ){
        CDockable cdockable = ((CommonDockable)dockable).getDockable();
        result.add( cdockable );
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.control.focus.FocusHistory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.