1 package org.splat.dal.bo.som;
3 * Attribute class of type Comment.<br/>
4 * A comment is made of any text up to 65 thousand characters.
6 * @author Daniel Brunier-Coulin
7 * @copyright OPEN CASCADE 2012
10 import org.splat.dal.bo.kernel.TextAttribute;
13 public class CommentAttribute extends TextAttribute {
15 // ==============================================================================================================================
17 // ==============================================================================================================================
19 // Database fetch constructor.
20 protected CommentAttribute () {
23 * Constructs a comment attached to a time stamp.
25 * @param from the time stamp to which this comment is attached.
26 * @param value the text of this comment
28 protected CommentAttribute (Timestamp from, String value) {
29 // ---------------------------------------------------------