* Has <b> OK </b> status if value of the flag is true. <p>
*/
public void _beginCollectEvents() {
listenerCalled = false;
XDictionary xDic = oObj.createDictionary("ListenDic",
new Locale("en","US","WIN"),
com.sun.star.linguistic2.DictionaryType.POSITIVE,"");
oObj.addDictionaryListEventListener(listener,false);
oObj.beginCollectEvents();
oObj.addDictionary(xDic);
xDic.add("Positiv",false,"");
xDic.setActive(true);
oObj.removeDictionary(xDic);
oObj.endCollectEvents();
oObj.removeDictionaryListEventListener(listener);