Examples of updateTitle()


Examples of clips.delegate.directory.complex.DirectoryMKB10.updateTitle()

      try {
        File txt = dlg.getSelectedFile();
        TxtParser parser = new TxtParser(txt);
        ArrayList<MkbItem>    list = parser.read();
        DirectoryMKB10      dir = (DirectoryMKB10) DirectoryLocator.getDirectory(DirectoryMKB10.class, false);
                dir.updateTitle(list);
                MessageBox.showInfo("Обновление прошло удачно");
      } catch (FileNotFoundException ex) {
        MessageBox.showExceptionOnly(ex);
      } catch (IOException ex) {
        MessageBox.showExceptionOnly(ex);
View Full Code Here

Examples of com.skcraft.launcher.model.modpack.Manifest.updateTitle()

        builder.readConfig(options.getConfigPath());
        builder.readVersionManifest(options.getVersionManifestPath());

        // From options
        manifest.updateName(options.getName());
        manifest.updateTitle(options.getTitle());
        manifest.updateGameVersion(options.getGameVersion());
        manifest.setVersion(options.getVersion());
        manifest.setLibrariesLocation(options.getLibrariesLocation());
        manifest.setObjectsLocation(options.getObjectsLocation());
View Full Code Here

Examples of de.sciss.meloncillo.gui.MainFrame.updateTitle()

  public void setDirty( boolean dirty )
  {
    if( !this.dirty == dirty ) {
      this.dirty = dirty;
      MainFrame  mf = (MainFrame) AbstractApplication.getApplication().getComponent( Main.COMP_MAIN );
      if( mf != null ) mf.updateTitle();
    }
  }

  // ---------------- SessionObject interface ----------------
View Full Code Here

Examples of de.sciss.meloncillo.gui.MainFrame.updateTitle()

      try {
        doc.bird.waitExclusive( Session.DOOR_ALL );
        doc.getUndoManager().discardAllEdits();
        doc.clear();
        doc.setDirty( false );
        mf.updateTitle();
        mf.clearLog();
      }
      finally {
        doc.bird.releaseExclusive( Session.DOOR_ALL );
      }
View Full Code Here

Examples of de.sciss.meloncillo.gui.MainFrame.updateTitle()

            AbstractApplication.getApplication().getResourceString( "warnOldSessionDir" )+ " :\n"+
            tempDir.getAbsolutePath(), getValue( Action.NAME ).toString(),
            JOptionPane.WARNING_MESSAGE );
        }
      }
      mf.updateTitle();
    }
  }
 
  // action for the Save-Session-As menu item
  private class ActionSaveAs
View Full Code Here

Examples of net.sf.mzmine.desktop.impl.MainWindow.updateTitle()

    Runnable swingThreadCode = new Runnable() {
      public void run() {
        MainWindow mainWindow = (MainWindow) MZmineCore.getDesktop();

        // Update the name of the project in the window title
        mainWindow.updateTitle();

        ProjectTree projectTree = mainWindow.getMainPanel()
            .getProjectTree();
        projectTree.setModel(treeModel);
View Full Code Here

Examples of net.sf.mzmine.desktop.impl.MainWindow.updateTitle()

      savedProject.setProjectFile(saveFile);

      // Update the window title to reflect the new name of the project
      if (MZmineCore.getDesktop() instanceof MainWindow) {
        MainWindow mainWindow = (MainWindow) MZmineCore.getDesktop();
        mainWindow.updateTitle();
      }

      logger.info("Finished saving the project to " + saveFile);

      setStatus(TaskStatus.FINISHED);
View Full Code Here

Examples of org.drools.guvnor.client.explorer.ClosableLabel.updateTitle()

        final ClosableLabel closableLabel = new ClosableLabel(kbase.getName());

        final UpdateTabEvent updateTabEvent = new UpdateTabEvent() {
            public void onUpdate(String newName) {
                closableLabel.updateTitle(newName);
            }
        };

        tabPanel.add(new KBaseConfigPanel(config, kbase, updateTabEvent, asset.getMetaData().getModuleUUID(), asset.getMetaData().getModuleName(), clientFactory), closableLabel);
View Full Code Here

Examples of org.drools.guvnor.client.explorer.ClosableLabel.updateTitle()

        final ClosableLabel closableLabel = new ClosableLabel(kbase.getName());

        final UpdateTabEvent updateTabEvent = new UpdateTabEvent() {
            public void onUpdate(String newName) {
                closableLabel.updateTitle(newName);
            }
        };

        tabPanel.add(new KBaseConfigPanel(config, kbase, updateTabEvent, asset.getMetaData().getModuleUUID(), asset.getMetaData().getModuleName(), clientFactory), closableLabel);
View Full Code Here

Examples of org.drools.repository.AssetItem.updateTitle()

            //Throws RulesRepositoryException if the package or asset does not exist
            AssetItem ai = repository.loadPackage(packageName).loadAsset(assetName);
            //Update asset
            ai.checkout();
            ai.updateTitle(assetEntry.getTitle());
            ai.updateDescription(assetEntry.getSummary());
            if (format != null) {
                ai.updateFormat(format);
            }
            if (assetEntry.getContent() != null) {
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.