Skip to main content
summaryrefslogtreecommitdiffstats
blob: ad51c4461a9cf854a1e9cde58a344e0c3f88af5b (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
/**
 * <copyright>
 * </copyright>
 *
 * $Id: IBoundedMapTypeDescriptor.java,v 1.3 2006/12/05 18:36:43 cbateman Exp $
 */
package org.eclipse.jst.jsf.context.symbol.internal.provisional;


/**
 * <!-- 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.
 * <!-- 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";

} // IBoundedMapTypeDescriptor

Back to the top