View Javadoc
1 /* 2 * Copyright (c) 2003 3 * Information Desire GmbH 4 * All rights reserved. 5 */ 6 package com.infodesire.infobit.dao; 7 import java.sql.Blob; 8 9 /*** 10 * abstract base class for all kinds of long content. every text can be long... 11 * 12 * @author konstantin 13 * @created August 20, 2003 14 * @version $Revision: 1.1 $ 15 * @hibernate.subclass discriminator-value="LongContent" 16 */ 17 abstract class LongContentImpl extends ContentImpl { 18 /*** 19 */ 20 private Blob _data; 21 22 23 /*** 24 * @return The Data value 25 * @hibernate.property column="binary_data" type="blob" 26 */ 27 public Blob getData() { 28 return _data; 29 } 30 31 32 /*** 33 * @param data The new Data value 34 */ 35 public void setData(Blob data) { 36 _data = data; 37 } 38 39 } 40

This page was automatically generated by Maven