Examples of hide()


Examples of com.vaadin.client.ui.VOverlay.hide()

                if (isEnabled() && isCapsLockOn(event)) {
                    warning.showRelativeTo(passwordWidget);
                    rpc.isCapsLockEnabled(true); // Added to send message to the
                                                 // server
                } else {
                    warning.hide();
                    rpc.isCapsLockEnabled(false); // Added to send message to
                                                  // the server
                }
            }
        }, KeyPressEvent.getType());
View Full Code Here

Examples of com.vaadin.terminal.gwt.client.Paintable.hide()

        for (final Iterator<VWindow> rem = removedSubWindows.iterator(); rem
                .hasNext();) {
            final VWindow w = rem.next();
            client.unregisterPaintable(w);
            subWindows.remove(w);
            w.hide();
        }

        if (uidl.hasAttribute("focused")) {
            // set focused component when render phase is finished
            Scheduler.get().scheduleDeferred(new Command() {
View Full Code Here

Examples of de.lessvoid.nifty.elements.Element.hide()

      modifyMoveEffect(EffectEventId.onShow, nextElement, currentIndex < nextIndex ? "right" : "left");
      nextElement.show();

      Element currentElement = screen.findElementByName(buttonToDialogMap.get(currentMenuButtonId));
      modifyMoveEffect(EffectEventId.onHide, currentElement, currentIndex < nextIndex ? "left" : "right");
      currentElement.hide();

      screen.findElementByName(currentMenuButtonId).stopEffect(EffectEventId.onCustom);
      screen.findElementByName(id).startEffect(EffectEventId.onCustom, null, "selected");
      currentMenuButtonId = id;
    }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.experiment.gui.OGCEXRegistryWorkflowPublisherWindow.hide()

      makePublic = registryPublishingWindow.isMakePublic();
      if (makePublic) {
        this.xregistryClient.addCapability(workflowQName.toString(), PUBLIC_ACTOR, false, XRegClientConstants.Action.Read.toString());
      }
      registryPublishingWindow.hide();

    } catch (Exception e) {
      this.engine.getErrorWindow().error(e.getMessage(), e);
    }
  }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.gui.WaitDialog.hide()

          Thread.sleep(1000);
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
        cleanup();
        waitDialog.hide();
      } else {
        finish();
      }
    } catch (RuntimeException e) {
      // we reset all the state
View Full Code Here

Examples of edu.stanford.bmir.protege.web.client.ui.tab.AbstractTab.hide()

        }
        getProject().getLayoutManager().removeTab(tab);
        tabs.remove(tab);
        hideTabStripItem(tab);
        remove(tab);
        tab.hide();
        doLayout();
    }

    protected void onTabAdded(String javaClassName) {
        AbstractTab tab = getProject().getLayoutManager().addTab(javaClassName);
View Full Code Here

Examples of games.stendhal.server.entity.mapstuff.area.Allotment.hide()

        try {
          final Allotment all = new Allotment();
          all.setPosition(Integer.parseInt(attributes.get("x")), Integer.parseInt(attributes.get("y")));
          all.setSize(Integer.parseInt(attributes.get("width")), Integer.parseInt(attributes.get("height")));
          all.hide();
          zone.add(all);
        } catch (final NumberFormatException e) {
          Logger.getLogger(FertileGrounds.class).error(
              "cannot create allotment in " + zone.getName() + ": " + e);
        }
View Full Code Here

Examples of java.awt.Component.hide()

     * @return Object[] Object Array for the entire row in the filter table.
     */

    public Object[] getRowForTable() {
        Component component = new TextBoxAndButton(this);
        component.hide();
        // get all the meta data and load the combo
        metaDataCombobox = new JComboBox(filterDomain.getMetaDataNames());
        metaDataCombobox.setRenderer(new BasicComboBoxRenderer() {
            @Override
            public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected,
View Full Code Here

Examples of java.awt.FileDialog.hide()

                File f = File.createTempFile("fdi", new File(item.getName()).getName(),
                        new File(System.getProperty("java.io.tmpdir")));
                item.write(f);
                dlg.setFile(f.getName());
                dlg.setDirectory(f.getParent());
                dlg.hide(); //hide it like the peer implementation do
            } catch (Exception e)
            {               
                throw new InputException("Cannot save file", e);
            }
        } else if (!StringUtils.isNullOrEmpty(inputForm.get(cancelKey)))
View Full Code Here

Examples of java.awt.Frame.hide()

            f.setBounds(-100,-200,40,30);
            f.show();
            owner = f;
        }
        PBufferCanvasPeer.initContext(owner);
        if (f!=null) f.hide();
        else if (owner instanceof Component) {((Component)owner).repaint();};
    }

    public PBufferCanvas3D(int width, int height) throws RuntimeException {
        this(width, height, 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.