com.esotericsoftware.yamlbeans.document.YamlElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoomba.lang.core Show documentation
Show all versions of zoomba.lang.core Show documentation
ZoomBA is a multi paradigm Micro Language for JVM Scripting
used for business development and software testing
The newest version!
package com.esotericsoftware.yamlbeans.document;
import java.io.IOException;
import com.esotericsoftware.yamlbeans.YamlConfig.WriteConfig;
import com.esotericsoftware.yamlbeans.emitter.Emitter;
import com.esotericsoftware.yamlbeans.emitter.EmitterException;
public abstract class YamlElement {
String tag;
String anchor;
public void setTag(String tag) {
this.tag = tag;
}
public void setAnchor(String anchor) {
this.anchor = anchor;
}
public String getTag() {
return tag;
}
public String getAnchor() {
return anchor;
}
public abstract void emitEvent(Emitter emitter, WriteConfig config) throws EmitterException, IOException;
}