Package org.jasig.portal.portletpublishing.xml

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


     * @param displayType
     * @param defaultValues
     * @return
     */
    public static Preference createMultiTextPreference(String name, String label, TextDisplay displayType, List<String> defaultValues) {
        MultiTextPreferenceInput input = new MultiTextPreferenceInput();
        input.getDefaults().addAll(defaultValues);
        input.setDisplay(displayType);
       
        Preference pref = new Preference();
        pref.setName(name);
        pref.setLabel(label);
        pref.setPreferenceInput(new JAXBElement<MultiTextPreferenceInput>(new QName("multi-text-parameter-input"), MultiTextPreferenceInput.class, input));
View Full Code Here

TOP

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

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.