com.astamuse.asta4d.render.ElementRemover Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asta4d-core Show documentation
Show all versions of asta4d-core Show documentation
core functionalities of asta4d framework, including template and snippt implemention
package com.astamuse.asta4d.render;
import com.astamuse.asta4d.extnode.GroupNode;
import com.astamuse.asta4d.render.transformer.ElementTransformer;
public class ElementRemover extends ElementTransformer {
public ElementRemover(Object originalData) {
super(new GroupNode(), originalData);
}
public ElementRemover() {
super(new GroupNode(), null);
}
}