Class FeMerge
- java.lang.Object
-
- com.github.weisj.jsvg.nodes.AbstractSVGNode
-
- com.github.weisj.jsvg.nodes.container.BaseContainerNode<SVGNode>
-
- com.github.weisj.jsvg.nodes.container.ContainerNode
-
- com.github.weisj.jsvg.nodes.filter.FeMerge
-
- All Implemented Interfaces:
FilterPrimitive
,Container<SVGNode>
,SVGNode
@ElementCategories(FilterPrimitive) @PermittedContent(anyOf=FeMergeNode.class) public final class FeMerge extends ContainerNode implements FilterPrimitive
-
-
Field Summary
Fields Modifier and Type Field Description private FilterPrimitiveBase
filterPrimitiveBase
private FilterChannelKey[]
inputChannels
static java.lang.String
TAG
-
Constructor Summary
Constructors Constructor Description FeMerge()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
applyFilter(@NotNull RenderContext context, @NotNull FilterContext filterContext)
void
build(@NotNull AttributeNode attributeNode)
ColorInterpolation
colorInterpolation(@NotNull FilterContext filterContext)
@NotNull Length
height()
boolean
isValid()
void
layoutFilter(@NotNull RenderContext context, @NotNull FilterLayoutContext filterLayoutContext)
@NotNull java.lang.String
tagName()
@NotNull Length
width()
@NotNull Length
x()
@NotNull Length
y()
-
Methods inherited from class com.github.weisj.jsvg.nodes.container.ContainerNode
children, doAdd
-
Methods inherited from class com.github.weisj.jsvg.nodes.container.BaseContainerNode
acceptChild, addChild, isAcceptableType
-
Methods inherited from class com.github.weisj.jsvg.nodes.AbstractSVGNode
addContent, id, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.github.weisj.jsvg.nodes.prototype.Container
childrenOfType
-
-
-
-
Field Detail
-
TAG
public static final java.lang.String TAG
- See Also:
- Constant Field Values
-
filterPrimitiveBase
private FilterPrimitiveBase filterPrimitiveBase
-
inputChannels
private FilterChannelKey[] inputChannels
-
-
Method Detail
-
tagName
@NotNull public @NotNull java.lang.String tagName()
-
build
public void build(@NotNull @NotNull AttributeNode attributeNode)
- Specified by:
build
in interfaceSVGNode
- Overrides:
build
in classAbstractSVGNode
-
isValid
public boolean isValid()
- Specified by:
isValid
in interfaceFilterPrimitive
-
x
@NotNull public @NotNull Length x()
- Specified by:
x
in interfaceFilterPrimitive
-
y
@NotNull public @NotNull Length y()
- Specified by:
y
in interfaceFilterPrimitive
-
width
@NotNull public @NotNull Length width()
- Specified by:
width
in interfaceFilterPrimitive
-
height
@NotNull public @NotNull Length height()
- Specified by:
height
in interfaceFilterPrimitive
-
layoutFilter
public void layoutFilter(@NotNull @NotNull RenderContext context, @NotNull @NotNull FilterLayoutContext filterLayoutContext)
- Specified by:
layoutFilter
in interfaceFilterPrimitive
-
applyFilter
public void applyFilter(@NotNull @NotNull RenderContext context, @NotNull @NotNull FilterContext filterContext)
- Specified by:
applyFilter
in interfaceFilterPrimitive
-
colorInterpolation
public ColorInterpolation colorInterpolation(@NotNull @NotNull FilterContext filterContext)
- Specified by:
colorInterpolation
in interfaceFilterPrimitive
-
-