Package org.sonatype.nexus.formfields

Examples of org.sonatype.nexus.formfields.TextAreaFormField


            BrandingCapabilityConfiguration.HEADER_ENABLED,
            messages.headerEnabledLabel(),
            messages.headerEnabledHelp(),
            FormField.OPTIONAL
        ).withInitialValue(true),
        new TextAreaFormField(
            BrandingCapabilityConfiguration.HEADER_HTML,
            messages.headerHtmlLabel(),
            messages.headerHtmlHelp(),
            FormField.OPTIONAL
        ),
        new CheckboxFormField(
            BrandingCapabilityConfiguration.FOOTER_ENABLED,
            messages.footerEnabledLabel(),
            messages.footerEnabledHelp(),
            FormField.OPTIONAL
        ).withInitialValue(true),
        new TextAreaFormField(
            BrandingCapabilityConfiguration.FOOTER_HTML,
            messages.footerHtmlLabel(),
            messages.footerHtmlHelp(),
            FormField.OPTIONAL
        )
View Full Code Here


  public GenerateMetadataCapabilityDescriptor() {
    formFields = Lists.<FormField>newArrayList(
        new RepositoryCombobox(
            REPOSITORY_ID, messages.repositoryLabel(), messages.repositoryHelp(), FormField.MANDATORY
        ).includingAnyOfFacets(MavenHostedRepository.class),
        new TextAreaFormField(
            GenerateMetadataCapabilityConfiguration.ALIASES,
            "Aliases",
            "Format: <alias>=<version>[,<alias>=<version>]",
            FormField.OPTIONAL
        ),
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.formfields.TextAreaFormField

Copyright © 2018 www.massapicom. 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.