Package org.domain.model.component.blog

Examples of org.domain.model.component.blog.Blogs.last()


  private void test02() {
    Users users = getUsers();
    User dr = users.getUser("dr");
    if (dr != null) {
      Blogs drBlogs = dr.getBlogs();
      Blog lastBlog = (Blog) drBlogs.last();
      try {
        drBlogs.remove(lastBlog);
      } catch (DmException e) {
        log.error("Error in Blogs.createBlog: " + e.getMessage());
      }
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.