/**
  * Sets the global mirror flag. This will set all current existing nodes' mirror state, and also
  * affect future created nodes. The default mirror flag is FALSE.
  *
  * @param theMirror New Mirror state.
  */
 public void mirror(boolean theMirror) {
   try {
     _myContext.setGlobalMirror(theMirror);
   } catch (StatusException e) {
     throw new CCOpenNIException(e);
   }
 }