* value. <p>
*/
public void _createStatusIndicator() {
boolean bResult = true;
XStatusIndicator SI1 = oObj.createStatusIndicator();
XStatusIndicator SI2 = oObj.createStatusIndicator();
//Start all Indicators
SI1.start("Status1",100);
SI2.start("Status2",100);
//change SI2
SI2.setText("A new name for the status");
SI2.setValue(45);
SI2.reset();
SI2.end();
//Now SI1 is active
SI1.end();
bResult &= SI1 != null;