Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4315186379e351e6e6b06798a850ebbfc5308455 (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
34
35
36
/**
 * <copyright>
 * </copyright>
 *
 * $Id: FullyQualifiedClass.java,v 1.1 2010/03/18 06:24:29 cbateman Exp $
 */
package org.eclipse.jst.jsf.facelet.core.internal.registry.taglib.faceletTaglib;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Fully Qualified Class</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * 
 *     The elements that use this type designate the name of a
 *     Java class or interface.  The name is in the form of a
 *     "binary name", as defined in the JLS.  This is the form
 *     of name used in Class.forName().  Tools that need the
 *     canonical name (the name used in source code) will need
 *     to convert this binary name to the canonical name.
 * 
 *       
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.jst.jsf.facelet.core.internal.registry.taglib.faceletTaglib.FaceletTaglibPackage#getFullyQualifiedClass()
 * @model extendedMetaData="name='fully-qualified-classType' kind='simple'"
 * @generated
 */
public interface FullyQualifiedClass extends IdentifiableStringValue
{
 // FullyQualifiedClass
} 

Back to the top