Skip to main content
summaryrefslogtreecommitdiffstats
blob: a9a07d1195610995852112ac5c3b1a6e26e30976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.eclipse.jst.jsf.common.runtime.internal.model.behavioural;

/**
 * Design time analog for the NamingContainer interface.
 * 
 * @author cbateman
 * 
 */
public interface INamingContainerInfo
{
    // tagging interface

    /**
     * Used as an adapter impl
     */
    public final static INamingContainerInfo ADAPTER = new INamingContainerInfo()
    {/* no impl */
    };
}

Back to the top