Examples of Container


Examples of org.useware.kernel.model.structure.Container

        // entities
        Mapping global = new DMRMapping()
                .setAddress("/{selected.profile}/subsystem=undertow/servlet-container=default/setting=jsp");


        Container overview = new Container(ns, "servletContainer", "Servlet Container", TemporalOperator.Choice, StereoTypes.EditorPanel);


        Container attributes = new Container(ns, "servletContainer#attributes", "JSP Settings", Form);
        Mapping attributesMapping = new DMRMapping()
                .addAttributes(
                        "trim-spaces", "smap",
                        "development", "keep-generated",
                        "recompile-on-fail","check-interval",
View Full Code Here

Examples of org.vertx.java.platform.Container

            routeMatcherHandler.handle(rm);
        }

        final String host = configurator.getHost();
        final int port = configurator.getPort();
        final Container container = configurator.getContainer();

        // Start listening and log success/failure
        server.listen(port, host, new Handler<AsyncResult<HttpServer>>() {
            @Override
            public void handle(AsyncResult<HttpServer> result) {
                final String listenPath = (configurator.getSSL() ? "https" : "http") + "://" + host + ":" + port;
                if (result.succeeded()) {
                    container.logger().info("Http server listening for " + listenPath);
                } else {
                    container.logger().error("Failed to start http server listening for " + listenPath, result.cause());
                }
                if (doneHandler != null) {
                    doneHandler.handle(result);
                }
            }
View Full Code Here

Examples of pivot.wtk.Container

        @Override
        public void validate() {
            if (!isValid()) {
                TextArea textArea = (TextArea)getComponent();
                Container parent = textArea.getParent();

                int breakWidth = getBreakWidth();

                int width = 0;
                int y = 0;

                int top = -textArea.getY();
                int bottom = top + parent.getHeight();

                int i = 0;
                int j = 0;
                int n = getLength();
                int start = -1;
View Full Code Here

Examples of pu.web.client.gui.Container

 
  public void close()
  {
    if(mChatbox != null)
    {
      Container parent = (Container)mChatbox.getParent();
      if(parent != null)
      {
        parent.removeChild(mChatbox);
      }
    }
   
    if(mScrollbar != null)
    {
      Container parent = (Container)mScrollbar.getParent();
      if(parent != null)
      {
        parent.removeChild(mScrollbar);
      }
    }
  }
View Full Code Here

Examples of ru.vassaev.core.container.Container

      dbAlias = root.getAttribute("alias");
      prcpool_name = root.getAttribute("prcpool");
      block_wait = Strings.parseIntegerNvl(root.getAttribute("block_wait"), 3000);
      //Загрузить информацию по всем задачам
      NodeList nl = Xml.getElementsByTagName(root, "task");
      Container cntr = ai.getContainer();
      for (int i = 0; i < nl.getLength(); i++) {
        try {
          Element e = (Element) nl.item(i);
          System.out.print("Loading task " + e.getAttribute("name") + " ...");
          String extend = e.getAttribute("extends");
View Full Code Here

Examples of sc.client.world.Container

   * being sent from the server.
   * @throws IOException
   */
  private void readObject() throws IOException
  {
    Container object = null;
    String type = this.codedinput.readString();
    String id = this.codedinput.readString();
    String key = type + id;

    if (Client.containers.containsKey(key))
      object = Client.containers.get(key).get(0);
    else
    {
      if (type.equals("tile"))
        object = new Tile();
      else if (type.equals("avatar"))
        object = new Avatar(id);
    }
   
    object.read(this.codedinput);
   
    // Add to all known containers if not already
    List<Container> objectlist = new ArrayList<Container>();
    objectlist.add(object);
    Client.containers.put(object.getID(), objectlist);
  }
View Full Code Here

Examples of selenium.step3.Container

        return factory.createLocator(field);
    }

    private Object decorateContainer(final ClassLoader loader, final Field field) {
        final WebElement wrappedElement = proxyForLocator(loader, createLocator(field));
        final Container container = containerFactory.create((Class<? extends Container>) field.getType(), wrappedElement);

        PageFactory.initElements(new ExtendedFieldDecorator(wrappedElement), container);
        return container;
    }
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.