Examples of SwingHelper


Examples of de.yaams.core.helper.SwingHelper

          // extract
          FileHelper.extractArchive(ex, getRTPFilename(name, rgssVersion));
        } else {
          final String rtpName = name;
          // inform user
          new SwingHelper(true) {

            @Override
            public void run() {
              YDialog.ok(
                  I18N.t("RTP {0} wird nun installiert.", rtpName),
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

  /**
   * Show the frame
   */
  public void start() {

    new SwingHelper() {

      @Override
      public void run() {

        FavoritManagement.openLastTabs();
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

   * Set text
   *
   * @param message
   */
  public void show(final String message) {
    new SwingHelper() {

      @Override
      public void run() {
        bar.setValue(act);
        act++;
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

   * Set text
   *
   * @param message
   */
  public void show(final String message, final String icon) {
    new SwingHelper() {

      @Override
      public void run() {
        show(message);
        Loading.this.icon.setIcon(IconCache.get(icon, 32));
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

  /**
   * Close it
   */
  public void exit() {
    new SwingHelper() {

      @Override
      public void run() {
        loading.setVisible(false);
        loading.dispose();
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

  public static void start(final AE ae) {

    // has pages?
    if (pages.size() > 0) {
      Log.ger.info("Start wizard");
      new SwingHelper(false) {

        @Override
        public void run() {
          new WizardFrame(pages, ae);
        }
View Full Code Here

Examples of de.yaams.maker.helper.SwingHelper

        // start
        SystemHelper.viewFile(ex);

        final String rtpName = name;
        // inform user
        new SwingHelper(true) {

          @Override
          public void run() {
            YDialog.ok(I18N.t("RTP {0} wird nun installiert.", rtpName),
                I18N.t("Die Installation wurde nun gestartet. Drücken Sie ok erst, wenn die Installation beendet ist."),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.