Examples of ListItem

  • com.google.appengine.tools.cloudstorage.ListItem
    Contains information of an individual listing item. If listing was non-recursive, GCS objects that match the prefix, {@link ListOptions.Builder#setPrefix(String)}, and has a separator after the prefix would be considered a directory and will only have the directory name set (length would be zero).
  • com.itextpdf.text.ListItem
    A ListItem is a Paragraph that can be added to a List.

    Example 1:

     List list = new List(true, 20); list.add(new ListItem("First line")); list.add(new ListItem("The second line is longer to see what happens once the end of the line is reached. Will it start on a new line?")); list.add(new ListItem("Third line")); 
    The result of this code looks like this:
    1. First line
    2. The second line is longer to see what happens once the end of the line is reached. Will it start on a new line?
    3. Third line
    Example 2:
     List overview = new List(false, 10); overview.add(new ListItem("This is an item")); overview.add("This is another item"); 
    The result of this code looks like this: @see Element @see List @see Paragraph
  • com.lowagie.text.ListItem
    A ListItem is a Paragraph that can be added to a List.

    Example 1:

     List list = new List(true, 20); list.add(new ListItem("First line")); list.add(new ListItem("The second line is longer to see what happens once the end of the line is reached. Will it start on a new line?")); list.add(new ListItem("Third line")); 
    The result of this code looks like this:
    1. First line
    2. The second line is longer to see what happens once the end of the line is reached. Will it start on a new line?
    3. Third line
    Example 2:
     List overview = new List(false, 10); overview.add(new ListItem("This is an item")); overview.add("This is another item"); 
    The result of this code looks like this: @see Element @see List @see Paragraph
  • com.pegaa.uploader.ui.filelist.item.ListItem
    @author tayfun
  • com.ponysdk.ui.server.basic.PListBox.ListItem
  • edu.mayo.bmi.guoqian.claml.ListItem
    3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <group ref="{}rubric.simple"/> <element ref="{}Para"/> <element ref="{}Include"/> <element ref="{}List"/> <element ref="{}Table"/> </choice> <attGroup ref="{}attlist.ListItem"/> </restriction> </complexContent> </complexType> </element>
  • io.conducive.client.ui.widgets.html.ListItem
    @author Reuben Firmin
  • net.mygwt.ui.client.widget.ListItem
    A item contained in a List.
    CSS:
    .my-listitem (list item)
    .my-listitem .my-listitem-text (list item text)
    @see List
  • org.apache.click.examples.control.html.list.ListItem
    This control provides HTML listitem for ordered and unordered lists. @author Bob Schellink
  • org.apache.fop.fo.flow.ListItem
  • org.apache.pivot.wtk.content.ListItem
    Default list item implementation.
  • org.apache.wicket.markup.html.list.ListItem
    Container that holds components in a ListView. @author Jonathan Locke @param < T> Model object type
  • org.appfuse.client.widget.ListItem
  • org.axsl.fo.fo.ListItem

    An fo:list-item object in XSL-FO.

    Note the inclusion of {@link CommonMarginInlineOptimumPa} in the "extends"list. The "space-start" and "space-end" properties are not included in the list of properties that apply to fo:list-item. However, "margin-left", "margin-right", "margin-top", and "margin-bottom" are included in that list, and, in the aXSL normalizations scheme, these can map to "space-start" and "space-end". Therefore, access to those properties must be made available to an fo:list-item.

    @see "XSL-FO Recommendation 1.0, Section 6.8.3"
  • org.foray.fotree.fo.obj.ListItem
    A "list-item" object in XSL-FO.
  • org.jboss.as.console.client.widgets.forms.ListItem
    @author Heiko Braun @date 5/12/11
  • org.jboss.ballroom.client.widgets.forms.ListItem
    @author Heiko Braun @date 5/12/11
  • org.jbox2d.testbed.framework.TestbedModel.ListItem
  • org.sonatype.maven.polyglot.ruby.ConfigVisitor.ListItem
  • org.springmodules.xt.ajax.component.ListItem
    Component implementing an HTML list item. @author Sergio Bossa @author Peter Bona
  • org.zkoss.zul.Listitem
    A list item.

    Default {@link #getZclass}: z-listitem (since 5.0.0) @author tomyeh

  • pivot.wtk.content.ListItem
    Default list item implementation. @author gbrown

  • Examples of org.sonatype.maven.polyglot.ruby.ConfigVisitor.ListItem

                    append( "'" ).append( entry.getKey() ).append( "' => [" );
                    ind = indent + "       " + entry.getKey().replaceAll( ".", " " );
                    count = config.list.size();
                    for (int j = 0; j < count; )
                    {
                        ListItem c = config.list.get(j);
                        if ( c.isXml() )
                        {
                            append( " xml( '" ).append( escape( c.xml ) ).append( "' )" );
                        }
                        else
                        {
    View Full Code Here

    Examples of org.springmodules.xt.ajax.component.ListItem

            IOffice droppableOffice = store.getOffice(event.getHttpRequest().getParameter(OFFICE_ID));
           
            if (! droppableOffice.getEmployees().contains(draggedEmployee)) {
                BindStatusHelper helper = new BindStatusHelper("command.employees");
               
                ListItem item = new ListItem(new SimpleText(draggedEmployee.getFirstname() + " " + draggedEmployee.getSurname()));
                InputField hidden = new InputField(helper.getStatusExpression(), draggedEmployee.getMatriculationCode(), InputField.InputType.HIDDEN);
               
                AppendContentAction appendAction = new AppendContentAction("employees", new LinkedList<Component>(Arrays.asList(item, hidden)));
               
                AjaxResponse response = new AjaxResponseImpl();
    View Full Code Here

    Examples of org.zkoss.zul.Listitem

          getListbox().clearSelection();
        }

        if (dragged instanceof Treerow) {
          Treeitem treeitem = (Treeitem) ((Treerow) dragged).getParent();
          Listitem listitem = new Listitem("");
          listitem.setValue(treeitem.getValue());
          dragged.getParent().removeChild(dragged);
          target.getParent().insertBefore(listitem, target);
        }

        try {
    View Full Code Here

    Examples of org.zkoss.zul.Listitem

            item.addEventListener(Events.ON_DROP, new EventListener() {
              public void onEvent(Event evt) {
                DropEvent dropEvent = (DropEvent) evt;
                Sortbox.this.addItemToSelection((Listitem) dropEvent.getDragged());
                for (Object obj : Sortbox.this.getSelectedItems()) {
                  Listitem listitem = (Listitem) obj;
                  Sortbox.this.insertBefore(listitem, dropEvent.getTarget());
                }
              }
            });
          }
    View Full Code Here

    Examples of org.zkoss.zul.Listitem

      throws javax.servlet.ServletException, java.io.IOException {
        final Desktop desktop = getDesktop(request);
        Bridge bridge = Bridge.start(getServletContext(), request, response, desktop);
        try {
          final Listbox listbox = (Listbox) ((Page)desktop.getPages().iterator().next()).getRoots().iterator().next();
          listbox.appendChild(new Listitem("Ajax " + ++cnt));
          response.getWriter().write(bridge.getResult());
        } finally {
          bridge.close();
        }
      }
    View Full Code Here

    Examples of pivot.wtk.content.ListItem

        /**
         * Gets the query to issue to the server, authenticated if needed.
         */
        private Request getRequest() {
            ListButton protocolListButton = (ListButton)serializer.getObjectByID("request.protocol");
            ListItem protocolListItem = (ListItem)protocolListButton.getSelectedItem();
            Protocol protocol = Protocol.decode(protocolListItem.getText());
            boolean secure = protocol.isSecure();

            TextInput hostTextInput = (TextInput)serializer.getObjectByID("request.host");
            String host = hostTextInput.getText();

            TextInput portTextInput = (TextInput)serializer.getObjectByID("request.port");
            String portText = portTextInput.getText();
            int port;
            try {
                port = Integer.parseInt(portText);
            } catch (Exception ex) {
                port = secure ? 443 : 80;
            }

            TextInput pathTextInput = (TextInput)serializer.getObjectByID("request.path");
            String path = pathTextInput.getText();

            ListButton methodListButton = (ListButton)serializer.getObjectByID("request.method");
            ListItem methodListItem = (ListItem)methodListButton.getSelectedItem();

            // Construct the HTTP request
            Request httpRequest = new Request(methodListItem.getText(), protocol.toString(), host, port, path);

            TextArea textArea = (TextArea)serializer.getObjectByID("request.body");
            String body = textArea.getText();
            httpRequest.setBody(body.getBytes());

    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.