org.eclipse.jst.jsp.core.taglib
Interface ITaglibRecord

All Known Subinterfaces:
IJarRecord, ITagDirRecord, ITLDRecord, IURLRecord

public interface ITaglibRecord

A representation of information about a single tag library descriptor. This interface is common to all record types.

Since:
1.0
See Also:
IJarRecord, ITagDirRecord, ITLDRecord,

This interface is not intended to be implemented by clients.


Field Summary
static int JAR
          A record to a .jar file referrable directly, 1.1 style, or mentioned in a web.xml file.
static int TAGDIR
          A record representing a folder of .tag/.tagx files
static int TLD
          A record representing a standalone .tld file
static int URL
          A record representing a .tld that is not a standalone file
 
Method Summary
 int getRecordType()
          Returns the type of this record.
 

Field Detail

JAR

public static final int JAR
A record to a .jar file referrable directly, 1.1 style, or mentioned in a web.xml file.

See Also:
Constant Field Values

TAGDIR

public static final int TAGDIR
A record representing a folder of .tag/.tagx files

See Also:
Constant Field Values

TLD

public static final int TLD
A record representing a standalone .tld file

See Also:
Constant Field Values

URL

public static final int URL
A record representing a .tld that is not a standalone file

See Also:
Constant Field Values
Method Detail

getRecordType

public int getRecordType()
Returns the type of this record. The returned value will be one of URL, TAGDIR, TLD, or JAR.

Returns:
the type of this resource
See Also:
JAR, TAGDIR, TLD, URL