Package com.cms.model

Examples of com.cms.model.Page


  public List<Page> getAllPages()
  {
    List <Page> result = new ArrayList<Page>();
    for (int i = 1; i < 6; i++)
    {
      Page p = new Page("title"+i, "menuTitle"+i, "<a> test sdnf fsdf  fsdf </a>");
      result.add(p);
    }
    return result;
  }
View Full Code Here


    return result;
  }

  public Page getPageById(long id)
  {
    Page p = new Page("title", "menuTitle", "<a> test sdnf fsdf  fsdf </a>");
    p.setMenuPosition(1);
    return p;
  }
View Full Code Here

TOP

Related Classes of com.cms.model.Page

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.