Package org.jresearch.flexess.umi.provider.impl

Examples of org.jresearch.flexess.umi.provider.impl.PropertyGroup


    Collection<? extends IProviderPropertyGroupInfo> groups = providerInfo.getPropertyGroups();

    for (IProviderPropertyGroupInfo group : groups) {

      Collection<? extends IProviderPropertyInfo> properties = group.getConfigurationInfo();
      PropertyGroup propertyGroup = new PropertyGroup();
      propertyGroup.setName(group.getName());

      for (IProviderPropertyInfo property : properties) {
        NamedValue nv = new NamedValue();
        nv.setName(property.getName());
        nv.setValue(property.getDefaultValue());
        propertyGroup.addProperty(nv);
      }

      settings.addGroup(propertyGroup);
    }
    return settings;
View Full Code Here

TOP

Related Classes of org.jresearch.flexess.umi.provider.impl.PropertyGroup

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.