Skip to main content
summaryrefslogtreecommitdiffstats
blob: f54c12ecbbabe1be78035f97b96594bd0e4d4e76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * <copyright>
 * </copyright>
 *
 * $Id$
 */
package org.eclipse.jst.jsf.context.symbol;


/**
 * <!-- begin-user-doc -->
 * Describes a IMapTypeDescriptor for which the possible keyed values are
 * unbounded for some set of possible value types.  For example, a managed
 * bean that implements Map, is unconstrained for all values in Java 1.4 and
 * for whatever the template value type is in Java5.
 * 
 * <p><b>Provisional API - subject to change</b></p>
 * <!-- end-user-doc -->
 *
 *
 * @see org.eclipse.jst.jsf.context.symbol.SymbolPackage#getIBoundedMapTypeDescriptor()
 * @model
 * @generated
 */
public interface IBoundedMapTypeDescriptor extends IMapTypeDescriptor, IBoundedTypeDescriptor {
    /**
     * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
     * @generated
     */
    String copyright = "Copyright 2006 Oracle"; //$NON-NLS-1$

} // IBoundedMapTypeDescriptor

Back to the top