|
|
@ -56,7 +56,9 @@ public class DemoChart extends AbstractChart<DemoDataConfig>{ |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public Object clone() throws CloneNotSupportedException { |
|
|
|
public Object clone() throws CloneNotSupportedException { |
|
|
|
DemoChart result = (DemoChart) super.clone(); |
|
|
|
DemoChart result = (DemoChart) super.clone(); |
|
|
|
result.setTitleFormula(this.getTitleFormula().clone()); |
|
|
|
if (getTitleFormula() != null) { |
|
|
|
|
|
|
|
result.setTitleFormula(this.getTitleFormula().clone()); |
|
|
|
|
|
|
|
} |
|
|
|
return result; |
|
|
|
return result; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|