Module org.tquadrat.foundation.svg
Package org.tquadrat.foundation.svg
Interface AllowsDocumentElementEventAttributes
- All Known Subinterfaces:
SVG
- All Known Implementing Classes:
SVGElementAdapter
,SVGGenericElement
,SVGImpl
@ClassVersion(sourceVersion="$Id: AllowsDocumentElementEventAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public sealed interface AllowsDocumentElementEventAttributes
permits SVG, SVGElementAdapter
SVG elements that allow the document element event attributes
"oncopy",
"oncut",
and
"onpaste"
will implement this interface.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: AllowsDocumentElementEventAttributes.java 1074 2023-10-02 12:05:06Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.svg.AllowsDocumentElementEventAttributes"
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe document element event attributes. -
Method Summary
Modifier and TypeMethodDescriptionvoid
setCopyHandler
(String value) Sets the copy handler for this SVG element.void
setCutHandler
(String value) Sets the cut handler for this SVG element.void
setPasteHandler
(String value) Sets the paste handler for this SVG element.
-
Field Details
-
DOCUMENTELEMENTEVENT_ATTRIBUTES
The document element event attributes.
-
-
Method Details
-
setCopyHandler
Sets the copy handler for this SVG element.- Parameters:
value
- The copy handler.- See Also:
-
setCutHandler
Sets the cut handler for this SVG element.- Parameters:
value
- The cut handler.- See Also:
-
setPasteHandler
Sets the paste handler for this SVG element.- Parameters:
value
- The paste handler.- See Also:
-