Skip to main content
summaryrefslogtreecommitdiffstats
blob: 747235a288a83161ab019b80c3df080ab9dfe578 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
###############################################################################
# Copyright (c) 2001, 2007 Oracle Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
# 
# Contributors:
#     Oracle Corporation - initial API and implementation
###############################################################################
plugin.display-label=Plugin
plugin.description=Causes the execution of an applet or bean. The applet or bean executes in the specified plugin. If the plugin is not available, displays a dialog to initiate the download of the plugin software

fallback.display-label=Fallback
fallback.description=The element provides a message for the user if the plugin does not start

root.display-label=Root
root.description=Defines standard elements and namespace attributes of tag libraries

text.display-label=Text
text.description=Encloses template data

expression.display-label=Expression
expression.description=Contains an expression valid in the scripting language used in the page

scriptlet.display-label=Scriptlet
scriptlet.description=Contains a code fragment valid in the scripting language used in the page

declaration.display-label=Declaration
declaration.description=Declares a variable or method valid in the scripting language used in the page

forward.display-label=Forward
forward.description=Forwards a request to an HTML file, JSP page, or servlet

param.display-label=Param
param.description=The element passes the name and value of a parameter to the resource

params.display-label=Params
params.description=The element sends parameter names and values to an applet or Bean at startup

include.display-label=Include
include.description=Includes a static resource or the result from another web component

useBean.display-label=UseBean
useBean.description=Instantiates or references a bean with a specific name and scope

getProperty.display-label=GetProperty
getProperty.description=Inserts the value of a bean property into the response

setProperty.display-label=SetProperty
setProperty.description=Sets a bean property value or values

directive.include.display-label=Directive.Include
directive.include.description=Includes a resource of text or code when the JSP page is translated

directive.page.display-label=Directive.Page
directive.page.description=Defines attributes that apply to an entire JSP page

directive.taglib.display-label=Directive.Taglib
directive.taglib.description=Defines a tag library and prefix for the custom tags used in the JSP page

Back to the top