public CFDbTestHostNodeEditObj(ICFSecurityHostNodeObj argOrig) {
   orig = argOrig;
   getBuff();
   CFSecurityHostNodeBuff origBuff = orig.getBuff();
   buff.set(origBuff);
   requiredContainerCluster = null;
 }
 public CFSecurityHostNodeBuff getBuff() {
   if (buff == null) {
     buff =
         ((ICFDbTestSchema) getOrigAsHostNode().getSchema().getBackingStore())
             .getFactoryHostNode()
             .newBuff();
     buff.set(orig.getBuff());
   }
   return (buff);
 }
 public void setIsNew(boolean value) {
   orig.setIsNew(value);
 }
 public boolean getIsNew() {
   return (orig.getIsNew());
 }
 public void setPKey(CFSecurityHostNodePKey value) {
   orig.setPKey(value);
   copyPKeyToBuff();
 }
 public CFSecurityHostNodePKey getPKey() {
   return (orig.getPKey());
 }
 public ICFSecuritySchemaObj getSchema() {
   return (orig.getSchema());
 }
 public void endEdit() {
   orig.endEdit();
 }
 public ICFSecurityHostNodeTableObj getHostNodeTable() {
   return (orig.getSchema().getHostNodeTableObj());
 }