Page 227 - 3-1
P. 227
package MDP;
import MDP.*;
public class ToolVo{
private int bno;
private String toolname;
private int count;
public ToolVo(){
}
public ToolVo(int bno, String toolname, int count){
this.bno = bno;
this.toolname = toolname;
this.count = count;
}
public void setBno(int bno){
this.bno = bno;
}
public int getBno(){
return bno;
}
public void setToolname(String toolname){
this.toolname = toolname;
}
public String getToolname(){
return toolname;
}
public void setCount(int count){
this.count = count;
}
public int getCount(){
return count;
}
}
- 227 -