
com.esotericsoftware.yamlbeans.document.YamlElement Maven / Gradle / Ivy
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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy