Package org.jboss.as.console.client.shared.properties

Examples of org.jboss.as.console.client.shared.properties.PropertyEditorFormItem


    }
   
    private static class PropertyEditorItemFactory implements FormItemFactory {
        @Override
        public FormItem makeFormItem(String beanPropName, String label, boolean isRequired) {
            PropertyEditorFormItem propEditor = new PropertyEditorFormItem(beanPropName,
                                                                           label,
                                                                           Console.CONSTANTS.subsys_logging_newHandlerProperty(),
                                                                           3);
            propEditor.setRequired(isRequired);
            return propEditor;
        }
View Full Code Here

TOP

Related Classes of org.jboss.as.console.client.shared.properties.PropertyEditorFormItem

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.