Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

oracle.jdeveloper.webapp.libraries
Interface DisplayableTagLibrary

All Superinterfaces:
Displayable
All Known Subinterfaces:
DerivedTagLibrary
All Known Implementing Classes:
JspLibrary, TagLibrary

public interface DisplayableTagLibrary
extends Displayable

Functions used to change various taglib display properties in the IDE


Method Summary
 java.lang.String getIconURL()
           
 java.lang.String getName()
           
 java.lang.String getPrefix()
          If preferred prefix is not defined short library name frmo Taglib file will be used instead.
 boolean getRunInEditor()
          Run in visual editor property getter.
 boolean getShowInPalette()
          Show in component palette property getter
 java.lang.String getURI()
          Taglib URI or namespace getter.
 java.lang.String getVersion()
          If tag library version is not explicitly set, it will be deduced from information in Taglib file.
 void setIcon(java.lang.String iconURL)
          Set the url of the icon you wish to use when displaying individual tags within JDeveloper.
 void setName(java.lang.String name)
          Set the name of this tag library.
 void setPrefix(java.lang.String prefix)
          Set the preffered prefix to be used for this taglib.
 void setRunInEditor(boolean runInEditor)
          Set whether to run all tags when viewed in the Visual Editor.
 void setShowInPalette(boolean showInPalette)
          Property for IDE ingegration
 void setVersion(java.lang.String version)
          Set the version of the tag library.
 
Methods inherited from interface oracle.ide.model.Displayable
getIcon, getLongLabel, getShortLabel, getToolTipText, toString
 

Method Detail

getShowInPalette

boolean getShowInPalette()
Show in component palette property getter

Returns:

setShowInPalette

void setShowInPalette(boolean showInPalette)
Property for IDE ingegration

Parameters:
showInPalette -

getRunInEditor

boolean getRunInEditor()
Run in visual editor property getter.

See Also:
setRunInEditor( boolean )

setRunInEditor

void setRunInEditor(boolean runInEditor)
Set whether to run all tags when viewed in the Visual Editor.

Parameters:
runInEditor - set true if tags should be run inside the Visual Editor.

getPrefix

java.lang.String getPrefix()
If preferred prefix is not defined short library name frmo Taglib file will be used instead. If short library name is not available prefix will be constructed from the library name.

See Also:
setPrefix(String)

setPrefix

void setPrefix(java.lang.String prefix)
Set the preffered prefix to be used for this taglib.

Parameters:
prefix - the prefix to use with this taglib.

setIcon

void setIcon(java.lang.String iconURL)
Set the url of the icon you wish to use when displaying individual tags within JDeveloper.

Parameters:
iconURL - url of icon.

getIconURL

java.lang.String getIconURL()

getName

java.lang.String getName()
See Also:
setName(String)

setName

void setName(java.lang.String name)
Set the name of this tag library. If preferred prefix is not defined this value will be used instead. Can not be null or an empty String.

Parameters:
name - the name to use when the tag is being manipulated within JDeveloper.

getVersion

java.lang.String getVersion()
If tag library version is not explicitly set, it will be deduced from information in Taglib file.

See Also:
setVersion(String)

setVersion

void setVersion(java.lang.String version)
Set the version of the tag library.

Parameters:
version - the version of this taglib.

getURI

java.lang.String getURI()
Taglib URI or namespace getter.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Copyright © 1997, 2011, Oracle. All rights reserved.