摘要: public class MyBorder extends AbstractBorder { private static final long serialVersionUID = 1L; private int xOff; private int yOff; private Insets insets; public MyBorder(int x, int y) { this.xOff = x; this.yOff = y; this.insets = new Insets(0, 0, this.xOff, this.... 阅读全文
posted @ 2013-07-11 10:58 rhino 阅读(1303) 评论(0) 推荐(0)