@Override
public void copy(final IShape sh) {
super.copy(sh);
if(sh!=null && sh.isTypeOf(IDotProp.class)){
final IDotProp dot = (IDotProp)sh;
setDotStyle(dot.getDotStyle());
setDiametre(dot.getDiametre());
setDotFillingCol(dot.getDotFillingCol());
}
}