Examples of Display


Examples of Galaxy.Tree.Tool.Input.Other.Display

    super(Display.class);
  }
  @Override
  public Map<String, String> mapFromObject(Object o) {
    // TODO Auto-generated method stub
    Display c = (Display) o;
    Map<String, String> myMapping;
    myMapping = new HashMap<String, String>();
    myMapping.put(NAME_TAG, "option");
    myMapping.put(VALUE_TAG, c.getContents());
    return myMapping;
  }
View Full Code Here

Examples of at.bestsolution.efxclipse.formats.svg.svg.Display

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setDisplay(Display newDisplay) {
    Display oldDisplay = display;
    display = newDisplay == null ? DISPLAY_EDEFAULT : newDisplay;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, SvgPackage.SVG_CIRCLE_ELEMENT__DISPLAY, oldDisplay, display));
  }
View Full Code Here

Examples of br.com.objectos.comuns.sitebricks.MetaPageBuilder.Display

      };
      return writer.toString();
    }

    private String getUrl() {
      Display last = parts.getLast();
      return last.getUrl();
    }
View Full Code Here

Examples of br.com.objectos.way.ui.PageMetaBuilder.Display

      };
      return writer.toString();
    }

    private String getUrl() {
      Display last = parts.getLast();
      return last.getUrl();
    }
View Full Code Here

Examples of com.codename1.ui.Display

    return _instance;
  }
 
  public int getDeviceResolution() {
    if (deviceResolution == -1) {
      Display d = Display.getInstance();
      long actual = d.getDisplayHeight() * d.getDisplayWidth();
      if (actual <= LIMIT_VERY_LOW) {
        deviceResolution = VERY_LOW;
      } else if (actual <= LIMIT_LOW) {
        deviceResolution = LOW;
      } else if (actual <= LIMIT_MEDIUM) {
View Full Code Here

Examples of com.google.gwt.dom.client.Style.Display

      @Override
      public void onChange(ChangeEvent event) {
        int selectedIndex = listBox.getSelectedIndex();
     
        if (selectedWidget != null) {
          Display display = null;
          String selectedStyle = listBox.getItemText(selectedIndex);
          if (selectedStyle.equals("BLOCK")) {
            display = Display.BLOCK;
          }
         
View Full Code Here

Examples of com.jogamp.newt.Display

    private static Window window;

    public static void initGL() {
        GLProfile.initSingleton(true);

        Display display = NewtFactory.createDisplay(null); // local display
        assertNotNull(display);

        Screen screen  = NewtFactory.createScreen(display, 0); // screen 0
        assertNotNull(screen);
View Full Code Here

Examples of com.screenrunner.ui.Display

  public void presentationDispToggleLock() {
    Display.getDisplay().setDisplayLocked(!Display.getDisplay().isDisplayLocked());
  }
 
  private void presentationRefreshDisplay() {
    Display disp = Display.getDisplay();
    Style style = ScreenRunner.currentStyle;
    PlaylistPage page = new PlaylistPage(null, -1);
   
    int idx = presentationSlideList.getSelectedIndex();
    if(idx > -1) {
      page = (PlaylistPage)ScreenRunner.playlist.getPagesModel().getElementAt(idx);
      if(page == null) {
        disp.prepareNextBackground(style, "default");
        disp.prepareNextSlide(null, 0, style);
      } else {
        disp.prepareNextBackground(style, page.getItem().getStyleType());
        disp.prepareNextSlide(page.getItem(), page.getPage(), style);
      }
    } else {
      disp.prepareNextBackground(style, "default");
      disp.prepareNextSlide(null, 0, style);
    }
   
    disp.applyChanges();
  }
View Full Code Here

Examples of com.sun.enterprise.tools.common.validation.util.Display

                validationManagerFactory.getValidationManager(validationFile);

            Collection failures =
                validationManager.validate(rootElement);

            Display display = new Display();
            display.text(failures);
            display.gui(failures);
        }
    }
View Full Code Here

Examples of com.sun.jna.examples.unix.X11.Display

         * Return the visual ID of the visual which supports an alpha
         * channel.
         */
        private int[] getAlphaVisuals() {
            X11 x11 = X11.INSTANCE;
            Display dpy = x11.XOpenDisplay(null);
            if (dpy == null)
                return new int[0];
            XVisualInfo info = null;
            try {
                int screen = x11.XDefaultScreen(dpy);
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.