Package org.apache.lenya.cms.authoring

Examples of org.apache.lenya.cms.authoring.DefaultBranchCreator


                        String creatorClassName = creatorConf.getAttribute(SRC_ATTRIBUTE);
                        Class creatorClass = Class.forName(creatorClassName);
                        creator = (NodeCreatorInterface) creatorClass.newInstance();
                        creator.init(creatorConf, manager, getLogger());
                    } else {
                        creator = new DefaultBranchCreator();
                    }

                    type.setCreator(creator);

                    // determine the sample content location.
View Full Code Here

TOP

Related Classes of org.apache.lenya.cms.authoring.DefaultBranchCreator

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.