public VDRBindingConfig(String pVDRId, String pCommand, Item pItem, VDRBindingConfig pParent) {
   this.vDRId = pVDRId;
   this.command = pCommand;
   this.item = pItem;
   if (pParent != null) {
     pParent.next = this;
   }
 }