Examples of title()


Examples of ariba.ui.aribaweb.util.AWDebugTrace.MetadataTraceNode.title()

    public String nodeTitle ()
    {
        String name = AWDebugTrace.elementName(_traceNode.element());
        MetadataTraceNode meta = _traceNode.associatedMetadata();
        return (meta != null)
                ? Fmt.S("%s (%s)", meta.title(_traceNode.element()), name)
                : name;
    }

    public String componentName ()
    {
View Full Code Here

Examples of br.com.caelum.seleniumdsl.Page.title()

    form.submit();

    Page page = browser.currentPage();

    Assert.assertEquals("Login", page.title());
    Assert.assertTrue(page.div("errors")
        .contains("Invalid login!"));

    Assert.assertTrue(form.isChecked("rememeber"));
    // ensures that the form remains with the previously typed login
View Full Code Here

Examples of com.citytechinc.cq.component.annotations.widgets.DialogFieldSet.title()

    widgetParameters.setCollapseFirst(dialogFieldSetAnnotation.collapseFirst());
    widgetParameters.setCollapsible(dialogFieldSetAnnotation.collapsible());
    widgetParameters.setCollapsed(dialogFieldSetAnnotation.collapsed());
    widgetParameters.setBorder(dialogFieldSetAnnotation.border());
    String title = null;
    if (!StringUtils.isEmpty(dialogFieldSetAnnotation.title())) {
      title = dialogFieldSetAnnotation.title();
    }
    widgetParameters.setTitle(title);
    widgetParameters.setListeners(getListeners());
    widgetParameters.setContainedElements(buildWidgetCollection(dialogFieldSetAnnotation));
View Full Code Here

Examples of com.cosmo.orm.annotations.CormObject.title()

      // Obtiene las propiedades de la clase y las mapea al formulario
      this.name = ct.formName();

      // Obtiene la lista de campos y los mapea a un grupo
      group = new FormFieldset("");
      group.setTitle(ct.title());
      group.setDescription(ct.description());
      for (Method method : ormClass.getMethods())
      {
         cfg = method.getAnnotation(CormObjectField.class);
View Full Code Here

Examples of com.cuubez.visualizer.annotation.Group.title()

        Group group = clazz.getAnnotation(Group.class);

        if (group != null) {

            rootResource.setGroupName(group.name());
            rootResource.setGroupTittle(group.title());

            return true;
        }

        return false;
View Full Code Here

Examples of com.dtolabs.rundeck.plugins.util.PropertyBuilder.title()

            name = field.getName();
        }
        pbuild.name(name);

        if (null != annotation.title() && !"".equals(annotation.title())) {
            pbuild.title(annotation.title());
        } else {
            pbuild.title(name);
        }

        pbuild.description(annotation.description());
View Full Code Here

Examples of com.example.bookstore.domain.support.BookBuilder.title()

    if (bindingResult.hasErrors()) {
      return mov;
    }

    BookBuilder bookBuilder = new BookBuilder();
    bookBuilder.title(manageBookForm.getTitle()).description(manageBookForm.getDescription())
        .price(manageBookForm.getPrice().toString()).author(manageBookForm.getAuthor())
        .year(manageBookForm.getYear()).category(manageBookForm.getCategory());

    Book book = bookBuilder.build(true);
View Full Code Here

Examples of com.fasterxml.jackson.module.jsonSchema.annotation.Link.title()

                    .setMethod(ignoreDefaults && "GET".equals(link.method()) ? null : link.method())
                    .setEnctype(ignoreDefaults && "application/json".equals(link.enctype()) ? null : link.enctype())
                    .setTargetSchema(fetchSchema(link.targetSchema()))
                    .setSchema(fetchSchema(link.schema()))
                    .setMediaType(ignoreDefaults && "application/json".equals(link.mediaType()) ? null : link.mediaType())
                    .setTitle(link.title());
            }
            SimpleTypeSchema simpleTypeSchema = schema.asSimpleTypeSchema();
            simpleTypeSchema.setLinks(linkDescriptionObjects);
            if(pathStart != null && pathStart.length() != 0)
                simpleTypeSchema.setPathStart(pathStart);
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.DivBuilder.title()

     */
    DivBuilder divBuilder = ElementBuilderFactory.get().createDivBuilder();

    // Add attributes to the div.
    divBuilder.id("myId");
    divBuilder.title("This is a div");

    // Add style properties to the div.
    StylesBuilder divStyle = divBuilder.style();
    divStyle.trustedBackgroundColor("red");
    divStyle.endStyle();
View Full Code Here

Examples of com.google.gwt.dom.builder.shared.TableCellBuilder.title()

         }
         String size = rowValue.rObject.getSize() > 0 ?
                              ", " + rowValue.rObject.getSize() + " bytes" :
                              "";
         nameCol.className(styleName);
         nameCol.title(
                 rowValue.rObject.getName() +
                 " (" + rowValue.rObject.getType() + size + ")");
         renderCell(nameCol, createContext(1), objectNameColumn_, rowValue);
         nameCol.endTD();
      }
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.