EMMA Coverage Report (generated Thu Jan 03 04:54:40 CET 2013)
[all classes][org.jomc.ri.model]

COVERAGE SUMMARY FOR SOURCE FILE [RuntimePerson.java]

nameclass, %method, %block, %line, %
RuntimePerson.java0%   (0/1)0%   (0/5)0%   (0/68)0%   (0/23)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RuntimePerson0%   (0/1)0%   (0/5)0%   (0/68)0%   (0/23)
RuntimePerson (): void 0%   (0/1)0%   (0/3)0%   (0/2)
RuntimePerson (Person): void 0%   (0/1)0%   (0/22)0%   (0/6)
clear (): void 0%   (0/1)0%   (0/5)0%   (0/2)
gc (): void 0%   (0/1)0%   (0/5)0%   (0/2)
gcOrClear (boolean, boolean): void 0%   (0/1)0%   (0/33)0%   (0/11)

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: RuntimePerson.java 4712 2013-01-02 13:56:12Z schulte $
32 *
33 */
34// </editor-fold>
35// SECTION-END
36package org.jomc.ri.model;
37 
38import org.jomc.model.Person;
39 
40// SECTION-START[Documentation]
41// <editor-fold defaultstate="collapsed" desc=" Generated Documentation ">
42/**
43 * Runtime {@code Person}.
44 *
45 * <dl>
46 *   <dt><b>Identifier:</b></dt><dd>org.jomc.ri.model.RuntimePerson</dd>
47 *   <dt><b>Name:</b></dt><dd>JOMC ⁑ RI ⁑ RuntimePerson</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:cs@schulte.it">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.4", comments = "See http://www.jomc.org/jomc/1.4/jomc-tools-1.4" )
63// </editor-fold>
64// SECTION-END
65public class RuntimePerson extends Person implements RuntimeModelObject
66{
67    // SECTION-START[RuntimePerson]
68 
69    /**
70     * Creates a new {@code RuntimePerson} instance by deeply copying a given {@code Person} instance.
71     *
72     * @param person The instance to copy.
73     *
74     * @throws NullPointerException if {@code person} is {@code null}.
75     */
76    public RuntimePerson( final Person person )
77    {
78        super( person );
79 
80        if ( this.getAuthors() != null )
81        {
82            this.setAuthors( RuntimeModelObjects.getInstance().copyOf( this.getAuthors() ) );
83        }
84        if ( this.getDocumentation() != null )
85        {
86            this.setDocumentation( RuntimeModelObjects.getInstance().copyOf( this.getDocumentation() ) );
87        }
88    }
89 
90    // SECTION-END
91    // SECTION-START[RuntimeModelObject]
92    public void gc()
93    {
94        this.gcOrClear( true, false );
95    }
96 
97    public void clear()
98    {
99        this.gcOrClear( false, true );
100    }
101 
102    private void gcOrClear( final boolean gc, final boolean clear )
103    {
104        if ( this.getAuthors() instanceof RuntimeModelObject )
105        {
106            if ( gc )
107            {
108                ( (RuntimeModelObject) this.getAuthors() ).gc();
109            }
110            if ( clear )
111            {
112                ( (RuntimeModelObject) this.getAuthors() ).clear();
113            }
114        }
115        if ( this.getDocumentation() instanceof RuntimeModelObject )
116        {
117            if ( gc )
118            {
119                ( (RuntimeModelObject) this.getDocumentation() ).gc();
120            }
121            if ( clear )
122            {
123                ( (RuntimeModelObject) this.getDocumentation() ).clear();
124            }
125        }
126    }
127 
128    // SECTION-END
129    // SECTION-START[Constructors]
130    // <editor-fold defaultstate="collapsed" desc=" Generated Constructors ">
131    /** Creates a new {@code RuntimePerson} instance. */
132    @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.4", comments = "See http://www.jomc.org/jomc/1.4/jomc-tools-1.4" )
133    public RuntimePerson()
134    {
135        // SECTION-START[Default Constructor]
136        super();
137        // SECTION-END
138    }
139    // </editor-fold>
140    // SECTION-END
141    // SECTION-START[Dependencies]
142    // SECTION-END
143    // SECTION-START[Properties]
144    // SECTION-END
145    // SECTION-START[Messages]
146    // SECTION-END
147}

[all classes][org.jomc.ri.model]
EMMA 2.1.5320 (stable) (C) Vladimir Roubtsov