📄 point2ddouble.java
字号:
package salvo.jesus.graph.java.awt.geom;import java.awt.geom.*;import java.io.*;/** * A <tt>java.awt.geom.Point2D.Double</tt> that is serializable. * There are no additional methods nor are there overriden methods in this class. * The only thing added is the <tt>Serializable</tt> interface. * * @author Jesus M. Salvo Jr. */public class Point2DDouble extends Point2D.Double implements Serializable { public Point2DDouble() { super(); } public Point2DDouble( double x, double y ) { super( x, y ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -