Interface WebPluginGadgetHost
@GwtCompatible
public interface WebPluginGadgetHost
Definition of the host providing means to access and communicate with a web gadget's framework environment.
Note: This definition only is used to document the methods available on the object passed to the plug-in's constructor. It is not available as type/object in the JavaScript environment.
- Since:
- 5.1.25
-
Method Summary
Modifier and TypeMethodDescriptiongetElementById
(String id) Lookup and return the element with the given id.void
Notify about a modification in value.
-
Method Details
-
getElementById
Lookup and return the element with the given id.- Parameters:
id
- The id of the element.- Returns:
- The according element or
null
, if no element in the gadget's scope has the given id. - Since:
- 5.1.25
-
onModification
void onModification()Notify about a modification in value.- Since:
- 5.1.25
-