GfrWrpBasPrsDspPrjRndWwdEarthShpDimOnePointCircle.getInstance().setColor(strs, colValue);
for (int i=0; i<strs.length; i++)
{
super.setChanged();
Object objEvt = new GfrEvtMdlIdDspRndWwdEarthShpDimOnePoint(strs[i], EnuEvtDspRndWwdEarthShpDimOne.COLOR, colValue);
super.notifyObservers(objEvt);
}
return;
}
// random color
for (int i=0; i<strs.length; i++)
{
Color colCur = GfrColorFactory.s_getRandom();
GfrWrpBasPrsDspPrjRndWwdEarthShpDimOnePointCircle.getInstance().setColor(strs[i], colCur);
super.setChanged();
Object objEvt = new GfrEvtMdlIdDspRndWwdEarthShpDimOnePoint(strs[i], EnuEvtDspRndWwdEarthShpDimOne.COLOR, colCur);
super.notifyObservers(objEvt);
}
}