001    // SECTION-START[License Header]
002    // <editor-fold defaultstate="collapsed" desc=" Generated License ">
003    /*
004     *   Java Object Management and Configuration
005     *   Copyright (C) Christian Schulte, 2011-313
006     *   All rights reserved.
007     *
008     *   Redistribution and use in source and binary forms, with or without
009     *   modification, are permitted provided that the following conditions
010     *   are met:
011     *
012     *     o Redistributions of source code must retain the above copyright
013     *       notice, this list of conditions and the following disclaimer.
014     *
015     *     o Redistributions in binary form must reproduce the above copyright
016     *       notice, this list of conditions and the following disclaimer in
017     *       the documentation and/or other materials provided with the
018     *       distribution.
019     *
020     *   THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
021     *   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
022     *   AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
023     *   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
024     *   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
025     *   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
026     *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
027     *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
028     *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
029     *   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
030     *
031     *   $JOMC: RuntimeModule.java 4381 2012-03-04 19:29:29Z schulte2005 $
032     *
033     */
034    // </editor-fold>
035    // SECTION-END
036    package org.jomc.ri.model;
037    
038    import org.jomc.model.Module;
039    
040    // SECTION-START[Documentation]
041    // <editor-fold defaultstate="collapsed" desc=" Generated Documentation ">
042    /**
043     * Runtime {@code Module}.
044     *
045     * <dl>
046     *   <dt><b>Identifier:</b></dt><dd>org.jomc.ri.model.RuntimeModule</dd>
047     *   <dt><b>Name:</b></dt><dd>JOMC RI RuntimeModule</dd>
048     *   <dt><b>Specifications:</b></dt>
049     *     <dd>org.jomc.ri.model.RuntimeModelObject @ 1.2</dd>
050     *   <dt><b>Abstract:</b></dt><dd>No</dd>
051     *   <dt><b>Final:</b></dt><dd>No</dd>
052     *   <dt><b>Stateless:</b></dt><dd>No</dd>
053     * </dl>
054     *
055     * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a> 1.2
056     * @version 1.2
057     */
058    // </editor-fold>
059    // SECTION-END
060    // SECTION-START[Annotations]
061    // <editor-fold defaultstate="collapsed" desc=" Generated Annotations ">
062    @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" )
063    // </editor-fold>
064    // SECTION-END
065    public class RuntimeModule extends Module implements RuntimeModelObject
066    {
067        // SECTION-START[RuntimeModule]
068    
069        /**
070         * Creates a new {@code RuntimeModule} instance by deeply copying a given {@code Module} instance.
071         *
072         * @param module The instance to copy.
073         *
074         * @throws NullPointerException if {@code module} is {@code null}.
075         */
076        public RuntimeModule( final Module module )
077        {
078            super( module );
079    
080            if ( this.getAuthors() != null )
081            {
082                this.setAuthors( RuntimeModelObjects.getInstance().copyOf( this.getAuthors() ) );
083            }
084            if ( this.getDocumentation() != null )
085            {
086                this.setDocumentation( RuntimeModelObjects.getInstance().copyOf( this.getDocumentation() ) );
087            }
088            if ( this.getImplementations() != null )
089            {
090                this.setImplementations( RuntimeModelObjects.getInstance().copyOf( this.getImplementations() ) );
091            }
092            if ( this.getMessages() != null )
093            {
094                this.setMessages( RuntimeModelObjects.getInstance().copyOf( this.getMessages() ) );
095            }
096            if ( this.getProperties() != null )
097            {
098                this.setProperties( RuntimeModelObjects.getInstance().copyOf( this.getProperties() ) );
099            }
100            if ( this.getSpecifications() != null )
101            {
102                this.setSpecifications( RuntimeModelObjects.getInstance().copyOf( this.getSpecifications() ) );
103            }
104        }
105    
106        // SECTION-END
107        // SECTION-START[RuntimeModelObject]
108        public void gc()
109        {
110            this.gcOrClear( true, false );
111        }
112    
113        public void clear()
114        {
115            this.gcOrClear( false, true );
116        }
117    
118        private void gcOrClear( final boolean gc, final boolean clear )
119        {
120            if ( this.getAuthors() instanceof RuntimeModelObject )
121            {
122                if ( gc )
123                {
124                    ( (RuntimeModelObject) this.getAuthors() ).gc();
125                }
126                if ( clear )
127                {
128                    ( (RuntimeModelObject) this.getAuthors() ).clear();
129                }
130            }
131            if ( this.getDocumentation() instanceof RuntimeModelObject )
132            {
133                if ( gc )
134                {
135                    ( (RuntimeModelObject) this.getDocumentation() ).gc();
136                }
137                if ( clear )
138                {
139                    ( (RuntimeModelObject) this.getDocumentation() ).clear();
140                }
141            }
142            if ( this.getImplementations() instanceof RuntimeModelObject )
143            {
144                if ( gc )
145                {
146                    ( (RuntimeModelObject) this.getImplementations() ).gc();
147                }
148                if ( clear )
149                {
150                    ( (RuntimeModelObject) this.getImplementations() ).clear();
151                }
152            }
153            if ( this.getMessages() instanceof RuntimeModelObject )
154            {
155                if ( gc )
156                {
157                    ( (RuntimeModelObject) this.getMessages() ).gc();
158                }
159                if ( clear )
160                {
161                    ( (RuntimeModelObject) this.getMessages() ).clear();
162                }
163            }
164            if ( this.getProperties() instanceof RuntimeModelObject )
165            {
166                if ( gc )
167                {
168                    ( (RuntimeModelObject) this.getProperties() ).gc();
169                }
170                if ( clear )
171                {
172                    ( (RuntimeModelObject) this.getProperties() ).clear();
173                }
174            }
175            if ( this.getSpecifications() instanceof RuntimeModelObject )
176            {
177                if ( gc )
178                {
179                    ( (RuntimeModelObject) this.getSpecifications() ).gc();
180                }
181                if ( clear )
182                {
183                    ( (RuntimeModelObject) this.getSpecifications() ).clear();
184                }
185            }
186        }
187    
188        // SECTION-END
189        // SECTION-START[Constructors]
190        // <editor-fold defaultstate="collapsed" desc=" Generated Constructors ">
191        /** Creates a new {@code RuntimeModule} instance. */
192        @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" )
193        public RuntimeModule()
194        {
195            // SECTION-START[Default Constructor]
196            super();
197            // SECTION-END
198        }
199        // </editor-fold>
200        // SECTION-END
201        // SECTION-START[Dependencies]
202        // SECTION-END
203        // SECTION-START[Properties]
204        // SECTION-END
205        // SECTION-START[Messages]
206        // SECTION-END
207    }