Salome HOME
e6cc415325581fbcf5a7294219acb6879c23efa2
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / som / CommentAttribute.java
1 package org.splat.dal.bo.som;
2 /**
3  * Attribute class of type Comment.<br/>
4  * A comment is made of any text up to 65 thousand characters.
5  * 
6  * @author    Daniel Brunier-Coulin
7  * @copyright OPEN CASCADE 2012
8  */
9
10 import org.splat.dal.bo.kernel.TextAttribute;
11
12
13 public class CommentAttribute extends TextAttribute {
14
15 //  ==============================================================================================================================
16 //  Constructors
17 //  ==============================================================================================================================
18
19 //  Database fetch constructor.
20     protected CommentAttribute () {
21     }
22 /**
23  * Constructs a comment attached to a time stamp.
24  * 
25  * @param from  the time stamp to which this comment is attached.
26  * @param value the text of this comment
27  */
28     protected CommentAttribute (Timestamp from, String value) {
29 //  ---------------------------------------------------------
30       super(from, value);
31     }
32 }