Package org.gbcpainter.loaders.level

Examples of org.gbcpainter.loaders.level.LOADING_STATUS


    this.repaint();
  }

  @Override
  public void loadStatusUpdated( @NotNull final LevelLoader loader ) {
    final LOADING_STATUS status = this.loader.getLoadStatus();
    if ( ! status.hasFinished() ) {

      EventQueue.invokeLater( new Runnable() {
        @Override
        public void run() {
          if ( ! loadingDone ) {
            loadingLabel.setText( getLoadingDescription( status ) );
            resizeElements();
          }
        }
      } );

    } else {

      loadingDone = true;
      if ( status.hasFailed() ) {
        switchToFailMenu();

      } else {

        holderCreator = new Thread( new Runnable() {
View Full Code Here

TOP

Related Classes of org.gbcpainter.loaders.level.LOADING_STATUS

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.