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