Package fr.openwide.maven.artifact.notifier.web.application.artifact.component

Examples of fr.openwide.maven.artifact.notifier.web.application.artifact.component.ArtifactNotificationRuleTypeDropDownChoice$ArtifactNotificationRuleTypeChoiceList


    TextField<String> regexField = new RequiredTextField<String>("regex", BindingModel.of(ruleForm.getModel(),
        Binding.artifactNotificationRule().regex()));
    regexField.setLabel(new ResourceModel("artifact.rules.field.regex"));
    ruleForm.add(regexField);
   
    ArtifactNotificationRuleTypeDropDownChoice typeField = new ArtifactNotificationRuleTypeDropDownChoice("type",
        BindingModel.of(ruleForm.getModel(), Binding.artifactNotificationRule().type()));
    typeField.setLabel(new ResourceModel("artifact.rules.field.type"));
    typeField.setRequired(true);
    ruleForm.add(typeField);
   
    return body;
  }
View Full Code Here

TOP

Related Classes of fr.openwide.maven.artifact.notifier.web.application.artifact.component.ArtifactNotificationRuleTypeDropDownChoice$ArtifactNotificationRuleTypeChoiceList

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.