org.eclipse.jst.j2ee.webapplication
Interface TagLibRef

All Superinterfaces:
J2EEEObject

public interface TagLibRef
extends J2EEEObject

The taglib element is used to describe a JSP tag library.

Since:
1.0
Version:
since J2EE1.4 deprecated, use org.eclipse.jst.j2ee.internal.jsp.TagLibRef

Method Summary
 java.lang.String getTaglibLocation()
           
 java.lang.String getTaglibURI()
           
 WebApp getWebApp()
          Returns the value of the 'Web App' container reference.
 void setTaglibLocation(java.lang.String value)
           
 void setTaglibURI(java.lang.String value)
           
 void setWebApp(WebApp value)
          Sets the value of the 'Web App' container reference
 

Method Detail

getTaglibURI

public java.lang.String getTaglibURI()
Returns:
The value of the TaglibURI attribute The taglib-uri element describes a URI, relative to the location of the web.xml document, identifying a Tag Library used in the Web Application.

setTaglibURI

public void setTaglibURI(java.lang.String value)
Parameters:
value - The new value of the TaglibURI attribute

getTaglibLocation

public java.lang.String getTaglibLocation()
Returns:
The value of the TaglibLocation attribute The taglib-location element contains the location (as a resource relative to the root of the web application) where to find the Tag Libary Description file for the tag library.

setTaglibLocation

public void setTaglibLocation(java.lang.String value)
Parameters:
value - The new value of the TaglibLocation attribute

getWebApp

public WebApp getWebApp()
Returns the value of the 'Web App' container reference. It is bidirectional and its opposite is 'Tag Libs'.

If the meaning of the 'Web App' container reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Web App' container reference.
See Also:
setWebApp(WebApp), WebapplicationPackage.getTagLibRef_WebApp(), WebApp.getTagLibs()

setWebApp

public void setWebApp(WebApp value)
Sets the value of the 'Web App' container reference.

Parameters:
value - the new value of the 'Web App' container reference.
See Also:
getWebApp()