001/* 002 * This file is generated by jOOQ. 003 */ 004package com.echothree.model.jooq.server.records.content; 005 006 007import com.echothree.model.data.content.common.pk.ContentPageAreaClobPK; 008import com.echothree.model.data.content.common.pk.ContentPageAreaDetailPK; 009 010import org.jooq.Record1; 011import org.jooq.impl.UpdatableRecordImpl; 012 013 014/** 015 * This class is generated by jOOQ. 016 */ 017@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) 018public class ContentPageAreaClobs extends UpdatableRecordImpl<ContentPageAreaClobs> { 019 020 private static final long serialVersionUID = 1L; 021 022 /** 023 * Setter for 024 * <code>contentpageareaclobs.cntpac_contentpageareaclobid</code>. 025 */ 026 public void ContentPageAreaClob(ContentPageAreaClobPK value) { 027 set(0, value); 028 } 029 030 /** 031 * Getter for 032 * <code>contentpageareaclobs.cntpac_contentpageareaclobid</code>. 033 */ 034 public ContentPageAreaClobPK ContentPageAreaClob() { 035 return (ContentPageAreaClobPK) get(0); 036 } 037 038 /** 039 * Setter for 040 * <code>contentpageareaclobs.cntpac_cntpad_contentpageareadetailid</code>. 041 */ 042 public void ContentPageAreaDetail(ContentPageAreaDetailPK value) { 043 set(1, value); 044 } 045 046 /** 047 * Getter for 048 * <code>contentpageareaclobs.cntpac_cntpad_contentpageareadetailid</code>. 049 */ 050 public ContentPageAreaDetailPK ContentPageAreaDetail() { 051 return (ContentPageAreaDetailPK) get(1); 052 } 053 054 /** 055 * Setter for <code>contentpageareaclobs.cntpac_clob</code>. 056 */ 057 public void Clob(String value) { 058 set(2, value); 059 } 060 061 /** 062 * Getter for <code>contentpageareaclobs.cntpac_clob</code>. 063 */ 064 public String Clob() { 065 return (String) get(2); 066 } 067 068 // ------------------------------------------------------------------------- 069 // Primary key information 070 // ------------------------------------------------------------------------- 071 072 @Override 073 public Record1<ContentPageAreaClobPK> key() { 074 return (Record1) super.key(); 075 } 076 077 // ------------------------------------------------------------------------- 078 // Constructors 079 // ------------------------------------------------------------------------- 080 081 /** 082 * Create a detached ContentPageAreaClobs 083 */ 084 public ContentPageAreaClobs() { 085 super(com.echothree.model.jooq.server.tables.content.ContentPageAreaClobs.ContentPageAreaClobs); 086 } 087 088 /** 089 * Create a detached, initialised ContentPageAreaClobs 090 */ 091 public ContentPageAreaClobs(ContentPageAreaClobPK ContentPageAreaClob, ContentPageAreaDetailPK ContentPageAreaDetail, String Clob) { 092 super(com.echothree.model.jooq.server.tables.content.ContentPageAreaClobs.ContentPageAreaClobs); 093 094 ContentPageAreaClob(ContentPageAreaClob); 095 ContentPageAreaDetail(ContentPageAreaDetail); 096 Clob(Clob); 097 resetTouchedOnNotNull(); 098 } 099}