Page 500 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 500

정보통신기기  프로젝트



                    (8)   Elevator.java



                  package  minsu.elevator.bean;




                  import  java.sql.Timestamp;




                  /**

                   *
                    *  엘레베이터  객체를  담을  빈을  생성

                   * */




                  public  class  Elevator  {




                       private  int  no;

                       private  int  floor;

                       private  String  status;

                          private  Timestamp  timestamp;
                    //getter  와  setter를  정의해서  쉽게  데이터를  꺼낼  수  있는  클래스이다.

                      public  Elevator(int no, int floor,  String status, Timestamp  timestamp)

                      {

                           this.no=no;

                           this.floor=floor;

                           this.status=status;

                           this.timestamp=timestamp;
                      }

                       public  int  getNo()  {

                             return no;

                       }






                                                                                               정보통신기기과
                                                         -  493  -
   495   496   497   498   499   500   501   502   503   504   505