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: RuntimeModelObject.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    // SECTION-START[Documentation]
039    // <editor-fold defaultstate="collapsed" desc=" Generated Documentation ">
040    /**
041     * Runtime model object.
042     *
043     * <dl>
044     *   <dt><b>Identifier:</b></dt><dd>org.jomc.ri.model.RuntimeModelObject</dd>
045     *   <dt><b>Multiplicity:</b></dt><dd>Many</dd>
046     *   <dt><b>Scope:</b></dt><dd>None</dd>
047     * </dl>
048     *
049     * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a> 1.2
050     * @version 1.2
051     * @see org.jomc.ObjectManager#getObject(java.lang.Class) getObject(RuntimeModelObject[].class)
052     * @see org.jomc.ObjectManager#getObject(java.lang.Class,java.lang.String) getObject(RuntimeModelObject.class, "<i>implementation name</i>")
053     * @see org.jomc.ObjectManagerFactory
054     */
055    // </editor-fold>
056    // SECTION-END
057    // SECTION-START[Annotations]
058    // <editor-fold defaultstate="collapsed" desc=" Generated Annotations ">
059    @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" )
060    // </editor-fold>
061    // SECTION-END
062    public interface RuntimeModelObject
063    {
064        // SECTION-START[RuntimeModelObject]
065    
066        /** Handles shared runtime state. */
067        void gc();
068    
069        /**  Clears shared runtime state. */
070        void clear();
071    
072        // SECTION-END
073    }