org.sweble.wikitext.lazy.parser.LinkTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swc-parser-lazy Show documentation
Show all versions of swc-parser-lazy Show documentation
A parser for MediaWiki's Wikitext.
/*
* This file is auto-generated.
* DO NOT MODIFY MANUALLY!
*
* Generated by AstNodeGenerator.
* Last generated: 2014-09-12 00:37:37.
*/
package org.sweble.wikitext.lazy.parser;
import de.fau.cs.osr.ptk.common.ast.*;
/**
* Link Target
* Grammar
*
* LinkOptionTarget ::= [^\u0000-\u001F\u007F\uFFFD<>{}|[\]]+
*
*
*/
public class LinkTarget
extends StringContentNode
{
private static final long serialVersionUID = 1L;
// =========================================================================
public LinkTarget()
{
super();
}
public LinkTarget(String content)
{
super(content);
}
@Override
public int getNodeType()
{
return org.sweble.wikitext.lazy.AstNodeTypes.NT_LINK_TARGET;
}
// =========================================================================
// Properties
// =========================================================================
// Children
// =========================================================================
}