View Javadoc

1   // SECTION-START[License Header]
2   // <editor-fold defaultstate="collapsed" desc=" Generated License ">
3   /*
4    *   Java Object Management and Configuration
5    *   Copyright (C) Christian Schulte, 2011-313
6    *   All rights reserved.
7    *
8    *   Redistribution and use in source and binary forms, with or without
9    *   modification, are permitted provided that the following conditions
10   *   are met:
11   *
12   *     o Redistributions of source code must retain the above copyright
13   *       notice, this list of conditions and the following disclaimer.
14   *
15   *     o Redistributions in binary form must reproduce the above copyright
16   *       notice, this list of conditions and the following disclaimer in
17   *       the documentation and/or other materials provided with the
18   *       distribution.
19   *
20   *   THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
21   *   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22   *   AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23   *   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
24   *   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25   *   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26   *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27   *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28   *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29   *   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30   *
31   *   $JOMC: RuntimeText.java 4381 2012-03-04 19:29:29Z schulte2005 $
32   *
33   */
34  // </editor-fold>
35  // SECTION-END
36  package org.jomc.ri.model;
37  
38  import org.jomc.model.Text;
39  
40  // SECTION-START[Documentation]
41  // <editor-fold defaultstate="collapsed" desc=" Generated Documentation ">
42  /**
43   * Runtime {@code Text}.
44   *
45   * <dl>
46   *   <dt><b>Identifier:</b></dt><dd>org.jomc.ri.model.RuntimeText</dd>
47   *   <dt><b>Name:</b></dt><dd>JOMC RI RuntimeText</dd>
48   *   <dt><b>Specifications:</b></dt>
49   *     <dd>org.jomc.ri.model.RuntimeModelObject @ 1.2</dd>
50   *   <dt><b>Abstract:</b></dt><dd>No</dd>
51   *   <dt><b>Final:</b></dt><dd>No</dd>
52   *   <dt><b>Stateless:</b></dt><dd>No</dd>
53   * </dl>
54   *
55   * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a> 1.2
56   * @version 1.2
57   */
58  // </editor-fold>
59  // SECTION-END
60  // SECTION-START[Annotations]
61  // <editor-fold defaultstate="collapsed" desc=" Generated Annotations ">
62  @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.2.2", comments = "See http://jomc.sourceforge.net/jomc/1.2/jomc-tools-1.2.2" )
63  // </editor-fold>
64  // SECTION-END
65  public class RuntimeText extends Text implements RuntimeModelObject
66  {
67      // SECTION-START[RuntimeText]
68  
69      /**
70       * Creates a new {@code RuntimeText} instance by deeply copying a given {@code Text} instance.
71       *
72       * @param text The instance to copy.
73       *
74       * @throws NullPointerException if {@code text} is {@code null}.
75       */
76      public RuntimeText( final Text text )
77      {
78          super( text );
79      }
80  
81      // SECTION-END
82      // SECTION-START[RuntimeModelObject]
83      public void gc()
84      {
85      }
86  
87      public void clear()
88      {
89      }
90  
91      // SECTION-END
92      // SECTION-START[Constructors]
93      // <editor-fold defaultstate="collapsed" desc=" Generated Constructors ">
94      /** Creates a new {@code RuntimeText} instance. */
95      @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.2.2", comments = "See http://jomc.sourceforge.net/jomc/1.2/jomc-tools-1.2.2" )
96      public RuntimeText()
97      {
98          // SECTION-START[Default Constructor]
99          super();
100         // SECTION-END
101     }
102     // </editor-fold>
103     // SECTION-END
104     // SECTION-START[Dependencies]
105     // SECTION-END
106     // SECTION-START[Properties]
107     // SECTION-END
108     // SECTION-START[Messages]
109     // SECTION-END
110 }