Examples of display()


Examples of org.teiid.deployers.ExtendedPropertyMetadata.display()

    allowed.add("get");
    allowed.add("post");
   
    ExtendedPropertyMetadata metadata = new ExtendedPropertyMetadata("x", "java.lang.String","{$display:\"Is Immutable\",$description:\"\",$allowed:[\"get\",\"post\"], $required:\"true\",$advanced:\"true\"}", null);
   
    Assert.assertEquals("Is Immutable", metadata.display());
    Assert.assertEquals("", metadata.description());
    Assert.assertEquals(true, metadata.advanced());
    Assert.assertEquals(true, metadata.required());
    Assert.assertEquals(false, metadata.masked());
    Assert.assertEquals(true , metadata.readOnly());   
View Full Code Here

Examples of org.teiid.translator.TranslatorProperty.display()

     
      if (value != null) {
        Method setterMethod = getSetter(ef.getClass(), method);
        setterMethod.invoke(ef, convert(value, method.getReturnType()));
      } else if (tp.required()) {
        throw new DeploymentException(RuntimePlugin.Util.getString("required_property_not_exists", tp.display())); //$NON-NLS-1$
      }
    }
    caseInsensitivProps.remove(Translator.EXECUTION_FACTORY_CLASS);
    if (!caseInsensitivProps.isEmpty()) {
      LogManager.logWarning(LogConstants.CTX_RUNTIME, RuntimePlugin.Util.getString("undefined_translator_props", caseInsensitivProps.keySet(), data.getName())); //$NON-NLS-1$
View Full Code Here

Examples of plugins.audioPlayer.javazoom.jlgui.player.amp.tag.ui.TagSearch.display()

    {
        TagSearch ts = new TagSearch(this);
        ts.setIconImage(config.getIconParent().getImage());
        ts.setSize(400, 300);
        ts.setLocation(loader.getLocation());
        ts.display();
    }

    /**
     * Process EJECT event.
     * @param modifiers
View Full Code Here

Examples of srsim.ui.IView.display()

    // Show user interface
    IView view = nogui ? new ConsoleView(simulator) : new SwingView(
        simulator);
    view.init();
    view.display();
  }

}
View Full Code Here

Examples of tray.balloon.Balloon.display()

  public void nativeDisplayMessage(int nativeId, final String caption,
      final String text, final MessageType messageType) {
    Point loc = nativeGetIconLocation0(nativeId);
    final Balloon balloon = new Balloon();
    balloon.setBounds(loc.x + 12, loc.y + 12, 1, 1);
    balloon.display(caption, text, messageType);
  }

  @Override
  public void nativeSetImage(int nativeId, String file) {
    this.nativeSetImage0(nativeId, file);
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.