Skip to main content
summaryrefslogtreecommitdiffstats
blob: 35a2fb70a92a3d14ef579b9bcb6bdfb6a7dc2cb7 (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
37
38
39
40
41
/**
 * <copyright>
 * </copyright>
 *
 * $Id: Path.java,v 1.1 2010/03/18 06:24:37 cbateman Exp $
 */
package org.eclipse.jst.jsf.facelet.core.internal.registry.taglib.faceletTaglib;


/**
 * <!-- begin-user-doc -->
 * A representation of the model object '<em><b>Path</b></em>'.
 * <!-- end-user-doc -->
 *
 * <!-- begin-model-doc -->
 * 
 * 
 *     The elements that use this type designate either a relative
 *     path or an absolute path starting with a "/".
 * 
 *     In elements that specify a pathname to a file within the
 *     same Deployment File, relative filenames (i.e., those not
 *     starting with "/") are considered relative to the root of
 *     the Deployment File's namespace.  Absolute filenames (i.e.,
 *     those starting with "/") also specify names in the root of
 *     the Deployment File's namespace.  In general, relative names
 *     are preferred.  The exception is .war files where absolute
 *     names are preferred for consistency with the Servlet API.
 * 
 *       
 * <!-- end-model-doc -->
 *
 *
 * @see org.eclipse.jst.jsf.facelet.core.internal.registry.taglib.faceletTaglib.FaceletTaglibPackage#getPath()
 * @model extendedMetaData="name='pathType' kind='simple'"
 * @generated
 */
public interface Path extends IdentifiableStringValue
{
 // Path
} 

Back to the top