首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

A小弟我自己写的connection连线算法XY

2012-10-24 
A我自己写的connection连线算法XYpackage Draw2D_1public class PointXY{private int xprivate int ypu

A我自己写的connection连线算法XY
package Draw2D_1;

public class PointXY
{
    private int x;
    private int y;
   
    public PointXY(int x,int y){
        this.x = x;
        this.y = y;
    }
   
    public int getX()
    {
        return x;
    }
    public void setX(int x)
    {
        this.x = x;
    }
    public int getY()
    {
        return y;
    }
    public void setY(int y)
    {
        this.y = y;
    }

    @Override
    public String toString()
    {
        // TODO Auto-generated method stub
        return super.toString();
    }
   
   
   
}

热点排行