コード例 #1
0
ファイル: BezierFigure.java プロジェクト: ilyessou/jhotdraw
 @Override
 public BezierFigure clone() {
   BezierFigure that = (BezierFigure) super.clone();
   that.path = this.path.clone();
   that.invalidate();
   return that;
 }