www.pudn.com > Hotel.rar > Getroom.java


/* 
 * Created on 2007-6-14 
 * 
 * TODO To change the template for this generated file go to 
 * Window - Preferences - Java - Code Style - Code Templates 
 */ 
package myroom; 
 
/** 
 * @author yongyong 
 * 
 * TODO To change the template for this generated type comment go to 
 * Window - Preferences - Java - Code Style - Code Templates 
 */ 
public class Getroom { 
	int i; 
   public Getroom(){ 
   } 
   public Getroom(int i) 
   { 
    this.i=i; 
   } 
   public void setroomno(int i) 
   { 
     this.i=i; 
   } 
   public int getroomno() 
   { 
     return i;	 
   } 
	public static void main(String[] args) { 
	} 
}