Collision.java :  » Network » kayao » kayao » server » Android Open Source

Android Open Source » Network » kayao 
kayao » kayao » server » Collision.java
package kayao.server;

public class Collision {

  protected int mId;
  protected int mTime;
  public Collision(int id, int time)
  {
    mId=id;
    mTime=time;
  }
  public int getId()
  {
    return mId;
  }
  public int getTime()
  {
    return mTime;
  }
  public void setTime(int time) {
    mTime=time;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.