001/* 002 * This file is generated by jOOQ. 003 */ 004package com.echothree.model.jooq.server.records.chain; 005 006 007import com.echothree.model.data.chain.common.pk.ChainActionChainActionSetPK; 008import com.echothree.model.data.chain.common.pk.ChainActionPK; 009import com.echothree.model.data.chain.common.pk.ChainActionSetPK; 010 011import org.jooq.Record1; 012import org.jooq.impl.UpdatableRecordImpl; 013 014 015/** 016 * This class is generated by jOOQ. 017 */ 018@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) 019public class ChainActionChainActionSets extends UpdatableRecordImpl<ChainActionChainActionSets> { 020 021 private static final long serialVersionUID = 1L; 022 023 /** 024 * Setter for 025 * <code>chainactionchainactionsets.chnactchnactst_chainactionchainactionsetid</code>. 026 */ 027 public void ChainActionChainActionSet(ChainActionChainActionSetPK value) { 028 set(0, value); 029 } 030 031 /** 032 * Getter for 033 * <code>chainactionchainactionsets.chnactchnactst_chainactionchainactionsetid</code>. 034 */ 035 public ChainActionChainActionSetPK ChainActionChainActionSet() { 036 return (ChainActionChainActionSetPK) get(0); 037 } 038 039 /** 040 * Setter for 041 * <code>chainactionchainactionsets.chnactchnactst_chnact_chainactionid</code>. 042 */ 043 public void ChainAction(ChainActionPK value) { 044 set(1, value); 045 } 046 047 /** 048 * Getter for 049 * <code>chainactionchainactionsets.chnactchnactst_chnact_chainactionid</code>. 050 */ 051 public ChainActionPK ChainAction() { 052 return (ChainActionPK) get(1); 053 } 054 055 /** 056 * Setter for 057 * <code>chainactionchainactionsets.chnactchnactst_nextchainactionsetid</code>. 058 */ 059 public void NextChainActionSet(ChainActionSetPK value) { 060 set(2, value); 061 } 062 063 /** 064 * Getter for 065 * <code>chainactionchainactionsets.chnactchnactst_nextchainactionsetid</code>. 066 */ 067 public ChainActionSetPK NextChainActionSet() { 068 return (ChainActionSetPK) get(2); 069 } 070 071 /** 072 * Setter for 073 * <code>chainactionchainactionsets.chnactchnactst_delaytime</code>. 074 */ 075 public void DelayTime(Long value) { 076 set(3, value); 077 } 078 079 /** 080 * Getter for 081 * <code>chainactionchainactionsets.chnactchnactst_delaytime</code>. 082 */ 083 public Long DelayTime() { 084 return (Long) get(3); 085 } 086 087 /** 088 * Setter for 089 * <code>chainactionchainactionsets.chnactchnactst_fromtime</code>. 090 */ 091 public void FromTime(Long value) { 092 set(4, value); 093 } 094 095 /** 096 * Getter for 097 * <code>chainactionchainactionsets.chnactchnactst_fromtime</code>. 098 */ 099 public Long FromTime() { 100 return (Long) get(4); 101 } 102 103 /** 104 * Setter for 105 * <code>chainactionchainactionsets.chnactchnactst_thrutime</code>. 106 */ 107 public void ThruTime(Long value) { 108 set(5, value); 109 } 110 111 /** 112 * Getter for 113 * <code>chainactionchainactionsets.chnactchnactst_thrutime</code>. 114 */ 115 public Long ThruTime() { 116 return (Long) get(5); 117 } 118 119 // ------------------------------------------------------------------------- 120 // Primary key information 121 // ------------------------------------------------------------------------- 122 123 @Override 124 public Record1<ChainActionChainActionSetPK> key() { 125 return (Record1) super.key(); 126 } 127 128 // ------------------------------------------------------------------------- 129 // Constructors 130 // ------------------------------------------------------------------------- 131 132 /** 133 * Create a detached ChainActionChainActionSets 134 */ 135 public ChainActionChainActionSets() { 136 super(com.echothree.model.jooq.server.tables.chain.ChainActionChainActionSets.ChainActionChainActionSets); 137 } 138 139 /** 140 * Create a detached, initialised ChainActionChainActionSets 141 */ 142 public ChainActionChainActionSets(ChainActionChainActionSetPK ChainActionChainActionSet, ChainActionPK ChainAction, ChainActionSetPK NextChainActionSet, Long DelayTime, Long FromTime, Long ThruTime) { 143 super(com.echothree.model.jooq.server.tables.chain.ChainActionChainActionSets.ChainActionChainActionSets); 144 145 ChainActionChainActionSet(ChainActionChainActionSet); 146 ChainAction(ChainAction); 147 NextChainActionSet(NextChainActionSet); 148 DelayTime(DelayTime); 149 FromTime(FromTime); 150 ThruTime(ThruTime); 151 resetTouchedOnNotNull(); 152 } 153}