Examples of newFragment()


Examples of org.apache.jetspeed.page.impl.DatabasePageManager.newFragment()

        PageManager pm = new DatabasePageManager(persistenceStore, new JetspeedIdGenerator(10,"Page",""));
       
        Page page = pm.newPage();
        page.setTitle("TEST");

        Fragment frag = pm.newFragment();
        frag.setId("Frag1");
        frag.setType(Fragment.LAYOUT);

        page.setRootFragment(frag);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.