Examples of Window


Examples of org.apache.pivot.wtk.Window

    @Override
    public void install(Component component) {
        super.install(component);

        Window window = (Window)component;
        window.getWindowListeners().add(this);
        window.getWindowStateListeners().add(this);

        window.setFocusTraversalPolicy(new WindowFocusTraversalPolicy());
    }
View Full Code Here

Examples of org.broadinstitute.gatk.engine.walkers.Window

        super( provider );
        initializeBounds(provider);

        // Retrieve information about the window being accessed.
        if( walker.getClass().isAnnotationPresent(Reference.class) ) {
            Window window = walker.getClass().getAnnotation(Reference.class).window();

            if( window.start() > 0 ) throw new ReviewedGATKException( "Reference window starts after current locus" );
            if( window.stop() < 0 ) throw new ReviewedGATKException( "Reference window ends before current locus" );

            windowStart = window.start();
            windowStop = window.stop();
        }
        else {
            windowStart = 0;
            windowStop = 0;
        }
View Full Code Here

Examples of org.eclipse.jface.window.Window

        form.getBody().setLayout( colLayout );

        // addToolBar(toolkit, form);

        Shell shell = new Shell( Display.getCurrent() );
        Window conditionPopup = new AddNewConditionDialog( shell,
                                                           this );
        Window actionPopup = new AddNewActionDialog( shell,
                                                     this );

        Window optionsPopup = new RuleAttributesDialog( shell,
                                                        this );

        Section ifSection = createMainSection( form,
                                               toolkit,
                                               "WHEN",
View Full Code Here

Examples of org.gnome.gtk.Window

            resumet.connect((ToolButton.CLICKED)new GUIEventPipe(this, "resume"));
           
            final ImageMenuItem preferencesm = (ImageMenuItem)mainGlade.getWidget("mbtn_preferences");
            preferencesm.connect(new GUIEventPipe(this, "preferences"));

            final Window w = (Window)mainGlade.getWidget("wnd_main");
            w.showAll();

            w.connect(new Window.DELETE_EVENT()
            {
                public boolean onDeleteEvent(Widget source, Event event)
                {
                    Gtk.mainQuit();
                    return false;
View Full Code Here

Examples of org.modeshape.jcr.api.monitor.Window

     * @see #start(ScheduledExecutorService)
     */
    @SuppressWarnings( "fallthrough" )
    private void rollup() {
        DateTime now = timeFactory.create();
        Window largest = null;
        for (DurationHistory history : durations.values()) {
            largest = history.rollup();
        }
        for (ValueHistory history : values.values()) {
            largest = history.rollup();
View Full Code Here

Examples of org.olat.core.gui.components.Window

   
    //more debug information: OLAT-3529
    if (ajaxEnabled) myContent.contextPut("isAdmin", Boolean.valueOf(ureq.getUserSession().getRoles().isOLATAdmin()));
   
    // create a mapper to not block main traffic when polling (or vica versa)
    final Window window = wboImpl.getWindow();
    m = new Mapper() {
      public MediaResource handle(String relPath, HttpServletRequest request) {
        pollCount++;
        // check for dirty components now.
        wboImpl.fireCycleEvent(Window.BEFORE_INLINE_RENDERING);
        Command updateDirtyCom = window.handleDirties();
        wboImpl.fireCycleEvent(Window.AFTER_INLINE_RENDERING);
        if (updateDirtyCom != null) {
          synchronized (windowcommands) { //o_clusterOK by:fj
            windowcommands.add(new WindowCommand(wboImpl, updateDirtyCom));
          }
View Full Code Here

Examples of org.openbravo.model.ad.ui.Window

      }
      if (context.equalsIgnoreCase("#User_Org")) {
        if (accessLevel == 4 || accessLevel == 6)
          return "'0'"; // force to be org *

        Window window;
        final boolean prevMode = OBContext.getOBContext().setInAdministratorMode(true);
        try {
          window = org.openbravo.dal.service.OBDal.getInstance().get(Window.class, strWindow);
          if (window.getWindowType().equals("T")) {
            String transactionalOrgs = OrgTree.getTransactionAllowedOrgs(retValue);
            if (transactionalOrgs.equals(""))
              // Will show no organizations into the organization's field of the transactional
              // windows
              return "'-1'";
View Full Code Here

Examples of org.openfaces.component.window.Window

    @Override
    public void setComponentProperties(FacesContext facesContext, UIComponent component) {
        super.setComponentProperties(facesContext, component);

        Window window = (Window) component;
        setBooleanProperty(window, "resizable");
        setStringProperty(window, "minWidth");
        setStringProperty(window, "minHeight");
    }
View Full Code Here

Examples of org.openqa.selenium.WebDriver.Window

    }

    @Override
    protected Result executeImpl(Context context, String... curArgs) {
        WebDriver driver = context.getWrappedDriver();
        Window window = driver.manage().window();
        window.maximize();
        return SUCCESS;
    }
View Full Code Here

Examples of org.spout.vanilla.inventory.window.Window

      return;
    }
    args.assertCompletelyParsed();

    WindowHolder holder = ((Player) source).get(WindowHolder.class);
    Window window = holder.getActiveWindow();
    if (window.isOpened()) {
      holder.closeWindow();
    } else {
      holder.openWindow(holder.getDefaultWindow());
    }
  }
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.