1 package org.splat.dal.bo.som;
3 * Attribute class of type Description.<br/>
4 * A description 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 DescriptionAttribute extends TextAttribute {
15 // ==============================================================================================================================
17 // ==============================================================================================================================
19 // Database fetch constructor.
20 protected DescriptionAttribute () {
23 * Constructs the description of a study or a scenario.
25 * @param from the study or the scenario to which this description is attached.
26 * @param value the text of this description
28 public DescriptionAttribute (ProjectElement from, String value) {
29 // ------------------------------------------------------------------
33 * Constructs the description attached to a version relation.
35 * @param from the version relation to which this description is attached.
36 * @param value the text of this description
38 protected DescriptionAttribute (VersionsRelation from, String value) {
39 // --------------------------------------------------------------------
43 * Constructs the description attached to a conversion relation.
45 * @param from the conversion relation to which this description is attached.
46 * @param value the text of this description
48 protected DescriptionAttribute (ConvertsRelation from, String value) {
49 // --------------------------------------------------------------------