function newMe($checkUserData = true, $output = false)
 {
     if ($checkUserData) {
         mUserdata::checkRestrictionOrDie("cantCreate" . str_replace("GUI", "", get_class($this)));
     }
     $this->loadAdapter();
     if ($this->A == null) {
         $this->loadMe();
     }
     $this->ID = $this->Adapter->makeNewLine2($this->getClearClass(get_class($this)), $this->A);
     if ($output or $this->echoIDOnNew) {
         if ($this->echoIDOnNew) {
             echo $this->ID;
         } else {
             Red::messageCreated();
         }
     }
     Aspect::joinPoint("after", $this, get_class($this) . "::newMe", $this->A);
     return $this->ID;
 }