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.jboss.ballroom.client.widgets.forms.ListItem

            if(isCreate)
                name = new TextBoxItem("name", "Name");
            else
                name = new TextItem("name", "Name");

            ListItem connectors= new ListItem("connectors", "Connectors");
            TextBoxItem socket = new TextBoxItem("socketBinding", "Socket Binding");
            NumberBoxItem period = new NumberBoxItem("broadcastPeriod", "Broadcast Period");

            if(isCreate)
                form.setFields(name, socket, connectors);
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            CheckBoxItem failoverShutdown = new CheckBoxItem("failoverShutdown", "Failover Shutdown?");

            CheckBoxItem started = new CheckBoxItem("started", "Started?");

            TextBoxItem discoveryGroup = new TextBoxItem("discoveryGroup", "Discovery Group", false);
            ListItem connectors = new ListItem("staticConnectors", "Static Connectors", false);

            if(isCreate) {

                TextBoxItem name = new TextBoxItem("name", "Name");
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            addContext(DeploymentWebserviceSubsystem.class, index++);

            addContext(DeployedEjb.class, index++,
                    new TextAreaItem("name", "Name"),
                    new TextBoxItem("componentClassname", "Component Classname"),
                    new ListItem("declaredRoles", "Declared Roles"),
                    new TextBoxItem("runAsRole", "Run As Role"),
                    new TextBoxItem("securityDomain", "Security Domain"));

            addContext(DeployedPersistenceUnit.class, index++,
                    new TextAreaItem("name", "Name"),
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            queueTable.getElement().setAttribute("style", "margin-bottom:15px;");

            // ----

            TextItem name = new TextItem("name", "Name");
            ListItem jndi = new JndiNamesItem("entries", "JNDI Names");

            CheckBoxItem durable = new CheckBoxItem("durable", "Durable?");
            TextBoxItem selector = new TextBoxItem("selector", "Selector") {
                @Override
                public boolean isUndefined() {
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            Form<DeploymentRecord> form = new Form<DeploymentRecord>(DeploymentRecord.class);
            form.setNumColumns(2);
            form.setEnabled(true);
            TextAreaItem name = new TextAreaItem("name", "Name");
            TextAreaItem runtimeName = new TextAreaItem("runtimeName", "Runtime Name");
            final ListItem groups = new ListItem("assignments", "Assigned Groups");

            form.setFields(name, runtimeName, groups);

            selectionModel.addSelectionChangeHandler(new SelectionChangeEvent.Handler() {
                @Override
                public void onSelectionChange(SelectionChangeEvent event) {
                    DeploymentRecord selection = selectionModel.getSelectedObject();
                    if(selection!=null)
                    {
                        groups.setValue(currentAssignments.get(selection.getName()));
                    }
                }
            });
            form.bind(contentTable);
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem


            // -----

            TextItem name = new TextItem("name", "Name");
            ListItem jndi = new JndiNamesItem("entries", "JNDI Names");

            form.setFields(name, jndi);

            Widget formToolsWidget = formTools.asWidget();
            formToolsWidget.getElement().setAttribute("style", "padding-top:15px;");
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            HeapBoxItem heapItem = new HeapBoxItem("heapSize", "Heap Size");
            HeapBoxItem maxHeapItem = new HeapBoxItem("maxHeapSize", "Max Heap Size");
            HeapBoxItem maxPermgen = new HeapBoxItem("maxPermgen", "Max Permgen Size", false);
            HeapBoxItem permgen = new HeapBoxItem("permgen", "Permgen Size", false);

            ListItem options = new ListItem("options", "JVM Options");

            form.setFields(nameItem, heapItem, maxHeapItem, permgen, maxPermgen, options);
            form.setEnabled(false);

            // ---
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            Form<DeploymentRecord> form = new Form<DeploymentRecord>(DeploymentRecord.class);
            form.setEnabled(false);
            TextAreaItem name = new TextAreaItem("name", "Name");
            TextAreaItem runtimeName = new TextAreaItem("runtimeName", "Runtime Name");
            final ListItem groups = new ListItem("assignments", "Assigned Groups");
            form.setFields(name, runtimeName, groups);

            runtimeName.setEnabled(false);
            name.setEnabled(false);
            groups.setEnabled(false);

            form.bind(deploymentsTable);

            deploymentSelection.addSelectionChangeHandler(
                    new SelectionChangeEvent.Handler()
                    {
                        @Override
                        public void onSelectionChange(SelectionChangeEvent event)
                        {
                            DeploymentRecord selection = deploymentSelection.getSelectedObject();
                            if (selection != null)
                            {
                                List<String> serverGroups = contentRepository.getServerGroups(selection);
                                groups.setValue(serverGroups);
                            }
                        }
                    });

            final ToolStrip toolStrip = new ToolStrip();
    View Full Code Here

    Examples of org.jboss.ballroom.client.widgets.forms.ListItem

            Form<DeploymentRecord> form = new Form<DeploymentRecord>(DeploymentRecord.class);
            form.setEnabled(false);
            TextAreaItem name = new TextAreaItem("name", "Name");
            TextAreaItem runtimeName = new TextAreaItem("runtimeName", "Runtime Name");
            final ListItem groups = new ListItem("assignments", "Assigned Groups");
            form.setFields(name, runtimeName, groups);

            runtimeName.setEnabled(false);
            name.setEnabled(false);
            groups.setEnabled(false);

            form.bind(deploymentsTable);

            deploymentSelection.addSelectionChangeHandler(
                    new SelectionChangeEvent.Handler()
                    {
                        @Override
                        public void onSelectionChange(SelectionChangeEvent event)
                        {
                            DeploymentRecord selection = deploymentSelection.getSelectedObject();
                            if (selection != null)
                            {
                                List<String> serverGroups = contentRepository.getServerGroups(selection);
                                groups.setValue(serverGroups);
                            }
                        }
                    });

            final ToolStrip toolStrip = new ToolStrip();
    View Full Code Here

    Examples of org.jbox2d.testbed.framework.TestbedModel.ListItem

          JLabel testLabel = null;

          @Override
          public Component getListCellRendererComponent(JList list, Object ovalue, int index,
              boolean isSelected, boolean cellHasFocus) {
            ListItem value = (ListItem) ovalue;
            if (value.isCategory()) {
              if (categoryLabel == null) {
                categoryLabel = new JLabel();
                categoryLabel.setOpaque(true);
                categoryLabel.setBackground(new Color(.5f, .5f, .6f));
                categoryLabel.setForeground(Color.white);
    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.