| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| ICallbackFunction |
|
| 1.0;1 |
| 1 | package net.sf.tacos.binding; |
|
| 2 | ||
| 3 | /** |
|
| 4 | * Iterface that represents a javascript function to connect client side event to |
|
| 5 | * |
|
| 6 | * @author Igor Drobiazko |
|
| 7 | * @since 4.1 |
|
| 8 | * |
|
| 9 | */ |
|
| 10 | public interface ICallbackFunction { |
|
| 11 | ||
| 12 | /** |
|
| 13 | * Returns the function name to be connected. |
|
| 14 | */ |
|
| 15 | String getFunctionName(); |
|
| 16 | } |