blob: 2042aee82094ee67a77b90ffa6de5467523b3b94 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.tokens;
import org.yaml.snakeyaml.error.Mark;
/**
* @see <a href="http://pyyaml.org/wiki/PyYAML">PyYAML</a> for more information
*/
public final class ValueToken extends Token {
public ValueToken(Mark startMark, Mark endMark) {
super(startMark, endMark);
}
@Override
public String getTokenId() {
return ":";
}
}