DirStep.java
上传用户:xueping400
上传日期:2022-02-08
资源大小:888k
文件大小:0k
源码类别:

Applet

开发平台:

Java

  1. public class DirStep {
  2. private int xstep;
  3. private int ystep;
  4. public DirStep(int xstep,int ystep){
  5. this.xstep = xstep;
  6. this.ystep = ystep;
  7. }
  8. public int getXstep() {
  9. return xstep;
  10. }
  11. public void setXstep(int xstep) {
  12. this.xstep = xstep;
  13. }
  14. public int getYstep() {
  15. return ystep;
  16. }
  17. public void setYstep(int ystep) {
  18. this.ystep = ystep;
  19. }
  20. }