Package org.jboss.seam.wiki.preferences

Examples of org.jboss.seam.wiki.preferences.PreferenceValueTemplate


    public List<String> getAllValues(PreferenceEntity.Property property) {
        if (property.getTemplateComponentName() == null || property.getTemplateComponentName().length() == 0)
            throw new RuntimeException("No value template component name " + property);

        PreferenceValueTemplate template =
            (PreferenceValueTemplate)Component.getInstance(property.getTemplateComponentName());

        if (template == null)
            throw new RuntimeException("Couldn't find template component name: " + property.getTemplateComponentName());

        return template.getTemplateValues();

    }
View Full Code Here

TOP

Related Classes of org.jboss.seam.wiki.preferences.PreferenceValueTemplate

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.