Examples of install()


Examples of org.jitterbit.ui.widget.DelayedDocumentContentChangeReaction.install()

                Filter filter = s.isEmpty() ? null : new Filter(s);
                table.setFilter(filter);
                table.highlightFirstRow();
            }
        });
        r.install(field);
    }

    @Override
    public void decorate(UiCanvas canvas) {
        JLabel label = createLabel();
View Full Code Here

Examples of org.jitterbit.ui.widget.list.ListContainerKeyBindingsInstaller.install()

    }

    public Disposable installKeyTraversalBindings(JComponent c) {
        checkNotNull(c, "c");
        ListContainerKeyBindingsInstaller inst = new ListContainerKeyBindingsInstaller(c);
        inst.install(this);
        return inst;
    }

    /**
     * Sets the value of the <code>terminateEditOnFocusLost</code> client property.
View Full Code Here

Examples of org.jitterbit.ui.widget.table.TableUndoRedoService.install()

        TableStringEditor valueEditor = new TableStringEditor();
        valueEditor.setClickCountToStart(1);
        table.setCellEditorAt(2, valueEditor);
        table.setTerminateEditOnFocusLost(true);
        TableUndoRedoService undoRedo = new TableUndoRedoService();
        undoRedo.install(table, true);
        return new KongaRowTable(table);
    }

    public void populateColumnValues(List<DatabaseColumn> columns, List<String> values) {
        TableModel model = (TableModel) table.getModel();
View Full Code Here

Examples of org.kiji.schema.KijiInstaller.install()

  @Test
  public void testUninstallingInstanceWithUsersDoesNotFail() throws Exception {
    final Configuration conf = HBaseConfiguration.create();
    final KijiURI uri = KijiURI.newBuilder(createTestHBaseURI()).withInstanceName("test").build();
    final KijiInstaller installer = KijiInstaller.get();
    installer.install(uri, conf);
    Kiji kiji = Kiji.Factory.get().open(uri);
    try {
      installer.uninstall(uri, conf);
    } finally {
      kiji.release();
View Full Code Here

Examples of org.mctourney.autoreferee.AutoRefMap.install()

          if (!hasVersion) mapname += " " + lines[3];

          AutoRefMap map = AutoRefMap.getMap(mapname.trim());
          if (map != null)
          {
            if (player.isSneaking()) map.install();
            else this.lobbyLoadMap(player, map);

            // if the sign is fit to have a version string listed, add/update it
            if (hasVersion && map.getVersion().length() <= 13)
            {
View Full Code Here

Examples of org.mozilla.javascript.commonjs.module.Require.install()

    context.setOptimizationLevel(this.optimizationLevel);
    context.setLanguageVersion(Context.VERSION_1_7);
    final ScriptableObject scope = context.initStandardObjects();
    final Require require = new Require(Context.getCurrentContext(), scope,
        getModuleScriptProvider(clazz), null, null, false);
    require.install(scope);
    try {
      this.moduleScope = new ModuleScope(scope, new URI("./" + this.name), null);
    } catch (final URISyntaxException e) {
      throw new SmallerException("Failed to create moduleScope", e);
    }
View Full Code Here

Examples of org.mule.jbi.management.InstallationContextImpl.install()

    protected void bootstrapComponent(RegistryComponent component, Object bootstrap) throws Exception {
        if(bootstrap instanceof Bootstrap) {
            Bootstrap bs = (Bootstrap)bootstrap;
            InstallationContextImpl ctx = new InstallationContextImpl(component, bs);
            bs.init(ctx);
            ctx.install();
        } else {
            throw new IllegalArgumentException("For JBI registry Boostrap class must be of type: " + Bootstrap.class.getName());
        }

    }
View Full Code Here

Examples of org.mule.registry.Library.install()

    Library lib = context.getRegistry().addLibrary(name);
    lib.setInstallRoot(installDir.getAbsolutePath());
    // Move unzipped files to install dir
    IOUtils.unzip(file, installDir);
    // Finish installation
    lib.install();
    return name;
  }

  public synchronized boolean uninstallSharedLibrary(String aSharedLibName) {
    try {
View Full Code Here

Examples of org.netbeans.modules.nodejs.LibrariesResolver.install()

        if (resolver.hasMissingLibraries()) {
            actions.add(new AbstractAction(NbBundle.getMessage(RootNode.class, "RESOLVE_LIBRARIES")){ //NOI18N

                @Override
                public void actionPerformed ( ActionEvent e ) {
                    resolver.install();
                }
            });
        }

        return actions.toArray( new Action[actions.size()] );
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.content.PlafContentManagerUI.install()

        if (this.plafContentManagerUI != null)
            this.plafContentManagerUI.unistall();

        PlafContentManagerUI newContentManagerUI = (PlafContentManagerUI) contentManagerUI;
        this.plafContentManagerUI = newContentManagerUI.install(getContentManagerUI(), toolWindowManager);
    }

    public ContentManagerUI getContentManagerUI() {
        return (ContentManagerUI) plafContentManagerUI;
    }
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.