Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
6 | Andrea | 1 | <#-- |
2 | /* |
||
3 | * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $ |
||
4 | * |
||
5 | * Licensed to the Apache Software Foundation (ASF) under one |
||
6 | * or more contributor license agreements. See the NOTICE file |
||
7 | * distributed with this work for additional information |
||
8 | * regarding copyright ownership. The ASF licenses this file |
||
9 | * to you under the Apache License, Version 2.0 (the |
||
10 | * "License"); you may not use this file except in compliance |
||
11 | * with the License. You may obtain a copy of the License at |
||
12 | * |
||
13 | * http://www.apache.org/licenses/LICENSE-2.0 |
||
14 | * |
||
15 | * Unless required by applicable law or agreed to in writing, |
||
16 | * software distributed under the License is distributed on an |
||
17 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
||
18 | * KIND, either express or implied. See the License for the |
||
19 | * specific language governing permissions and limitations |
||
20 | * under the License. |
||
21 | */ |
||
22 | --> |
||
23 | <#if parameters.onclick?exists> |
||
24 | onclick="${parameters.onclick?html}"<#rt/> |
||
25 | </#if> |
||
26 | <#if parameters.ondblclick?exists> |
||
27 | ondblclick="${parameters.ondblclick?html}"<#rt/> |
||
28 | </#if> |
||
29 | <#if parameters.onmousedown?exists> |
||
30 | onmousedown="${parameters.onmousedown?html}"<#rt/> |
||
31 | </#if> |
||
32 | <#if parameters.onmouseup?exists> |
||
33 | onmouseup="${parameters.onmouseup?html}"<#rt/> |
||
34 | </#if> |
||
35 | <#if parameters.onmouseover?exists> |
||
36 | onmouseover="${parameters.onmouseover?html}"<#rt/> |
||
37 | </#if> |
||
38 | <#if parameters.onmousemove?exists> |
||
39 | onmousemove="${parameters.onmousemove?html}"<#rt/> |
||
40 | </#if> |
||
41 | <#if parameters.onmouseout?exists> |
||
42 | onmouseout="${parameters.onmouseout?html}"<#rt/> |
||
43 | </#if> |
||
44 | <#if parameters.onfocus?exists> |
||
45 | onfocus="${parameters.onfocus?html}"<#rt/> |
||
46 | </#if> |
||
47 | <#if parameters.onblur?exists> |
||
48 | onblur="${parameters.onblur?html}"<#rt/> |
||
49 | </#if> |
||
50 | <#if parameters.onkeypress?exists> |
||
51 | onkeypress="${parameters.onkeypress?html}"<#rt/> |
||
52 | </#if> |
||
53 | <#if parameters.onkeydown?exists> |
||
54 | onkeydown="${parameters.onkeydown?html}"<#rt/> |
||
55 | </#if> |
||
56 | <#if parameters.onkeyup?exists> |
||
57 | onkeyup="${parameters.onkeyup?html}"<#rt/> |
||
58 | </#if> |
||
59 | <#if parameters.onselect?exists> |
||
60 | onselect="${parameters.onselect?html}"<#rt/> |
||
61 | </#if> |
||
62 | <#if parameters.onchange?exists> |
||
63 | onChange="${parameters.onchange?html}"<#rt/> |
||
64 | </#if> |