Package com.raman.projectv.model

Examples of com.raman.projectv.model.Page


  public Page getPageByHeading(String heading) {
    return pagesMap.get(heading);
  }

  public void updatePage(Page page) {
    final Page updatedPage = pagesMap.get(page.getHeading());
    updatedPage.setBody(page.getBody());
  }
View Full Code Here

TOP

Related Classes of com.raman.projectv.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.