Package org.sf.bee.runtime.configuration.items

Examples of org.sf.bee.runtime.configuration.items.ConfigItemSysParameterAttribute


        if (null != property && null != parent) {
            final String name = property.getName();
            final String description = property.getFullName();
            final String value = property.getValue();
            if (!parent.hasAttribute(name)) {
                final ConfigItemSysParameterAttribute attribute = parent.newAttribute(name);
                if (null != attribute) {
                    attribute.setDescription(description);
                    attribute.setValue(value);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.sf.bee.runtime.configuration.items.ConfigItemSysParameterAttribute

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.