WEB开发网
开发学院软件开发Java Apache Geronimo 机器修理店应用示例,第 3 部分:... 阅读

Apache Geronimo 机器修理店应用示例,第 3 部分: EJB:Bean 管理的持久性和容器管理的持久性

 2010-04-16 00:00:00 来源:WEB开发网   
核心提示: 注意,对于原来的 SQL 中为数据库表定义的每个字段,Apache Geronimo 机器修理店应用示例,第 3 部分: EJB:Bean 管理的持久性和容器管理的持久性(8),这里都有对应的 get 和 set 方法,清单 4 是 SimpleBMPEntityBean 的一部分,显示了远程接

注意,对于原来的 SQL 中为数据库表定义的每个字段,这里都有对应的 get 和 set 方法。清单 4 是 SimpleBMPEntityBean 的一部分,显示了远程接口中每个对应的 “get/set” 方法的实现。

清单 4. 实现远程方法的 SimpleBMPEntityBean 部分清单

  public int getPartID() 
  { 
   return partID; 
  } // end getPartID 
 
  public String getDescription() 
  { 
   return description; 
  } // end getDescription 
 
  public int getPrice() 
  { 
   return price; 
  } // end getPrice 
 
  public int getHorsePower() 
  { 
   return horsePower; 
  } // end getHorsePower 
 
  public void setPartID(int partID) 
  { 
   this.partID = partID; 
  } // end setPartID 
 
  public void setDescription(String description) 
  { 
   this.description = description; 
  } // end setDescription 
 
  public void setPrice(int price) 
  { 
   this.price = price; 
  } // end setPrice 
 
  public void setHorsePower(int horsePower) 
  { 
   this.horsePower = horsePower; 
  } // end setHorsePower 

SimpleBMPEntityBean 的这个部分相当简单明了。下一部分讨论实体 bean 的主接口。

上一页  3 4 5 6 7 8 9 10  下一页

Tags:Apache Geronimo 机器

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接