Package nl.lxtreme.ols.util.swing.StandardActionFactory.CloseAction

Examples of nl.lxtreme.ols.util.swing.StandardActionFactory.CloseAction.Closeable


    {
      if ( aEvent.getSource() instanceof Component )
      {
        final Component source = ( Component )aEvent.getSource();

        final Closeable closeableParent = findCloseableParent( source, Closeable.class );
        if ( closeableParent == null )
        {
          throw new RuntimeException( "Failed to find closeable parent?!" );
        }

        closeableParent.close();

        // Make sure the resources held by the window are released...
        if ( closeableParent instanceof Window )
        {
          ( ( Window )closeableParent ).dispose();
View Full Code Here

TOP

Related Classes of nl.lxtreme.ols.util.swing.StandardActionFactory.CloseAction.Closeable

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.