blob: 8d80512c7877eee47dfafc3ea4e15b26d74180e9 [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 KeyToken extends Token {
public KeyToken(Mark startMark, Mark endMark) {
super(startMark, endMark);
}
@Override
public String getTokenId() {
return "?";
}
}