Package org.jasig.portal.portletpublishing.xml

Examples of org.jasig.portal.portletpublishing.xml.SingleTextPreferenceInput


     * @param displayType
     * @param defaultValue
     * @return
     */
    public static Preference createSingleTextPreference(String name, String label, TextDisplay displayType, String defaultValue) {
        SingleTextPreferenceInput input = new SingleTextPreferenceInput();
        input.setDefault(defaultValue);
        input.setDisplay(displayType);
       
        Preference pref = new Preference();
        pref.setName(name);
        pref.setLabel(label);
        pref.setPreferenceInput(new JAXBElement<SingleTextPreferenceInput>(new QName("single-text-parameter-input"), SingleTextPreferenceInput.class, input));
View Full Code Here

TOP

Related Classes of org.jasig.portal.portletpublishing.xml.SingleTextPreferenceInput

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.