Package org.dmlite.model.component.category

Examples of org.dmlite.model.component.category.Categories.retrieveByOid()


   */
  public Category getCategory() {
    if (category == null) {
      Categories categories = (Categories) getDomainModel().getEntry(
          "Categories");
      category = (Category) categories
          .retrieveByOid(new Oid(categoryOid));
    }
    return category;
  }

View Full Code Here


  public void setCategoryOid(Long categoryOid) {
    this.categoryOid = categoryOid;
    if (categoryOid != null) {
      Categories categories = (Categories) getDomainModel().getEntry(
          "Categories");
      category = (Category) categories
          .retrieveByOid(new Oid(categoryOid));
    } else {
      category = null;
    }
  }
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.