📄 xyconstraints.java
字号:
package MulitePageEditor;
//import com.borland.jbcl.layout.XYConstraints;
public class XYConstraints implements Cloneable, java.io.Serializable
{
int x;
int y;
int width; // <= 0 means use the components's preferred size
int height; // <= 0 means use the components's preferred size
public XYConstraints() {
this(0, 0, 0, 0);
}
public XYConstraints(int x, int y, int width, int height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
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; }
public int getWidth() { return width; }
public void setWidth(int width) { this.width = width; }
public int getHeight() { return height; }
public void setHeight(int height) { this.height = height; }
/**
* Returns the hashcode for this XYConstraints.
*/
public int hashCode() {
return x ^ (y*37) ^ (width*43) ^ (height*47);
}
/**
* Checks whether two XYConstraints are equal.
*/
public boolean equals(Object that) {
if (that instanceof XYConstraints) {
XYConstraints other = (XYConstraints)that;
return other.x == x && other.y == y && other.width == width && other.height == height;
}
return false;
}
public Object clone() {
return new XYConstraints(x, y, width, height);
}
public String toString() {
return "XYConstraints[" + x + "," + y + "," + width + "," + height + "]";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -