本文整理汇总了Java中org.sweble.wikitext.lazy.preprocessor.Template类的典型用法代码示例。如果您正苦于以下问题:Java Template类的具体用法?Java Template怎么用?Java Template使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Template类属于org.sweble.wikitext.lazy.preprocessor包,在下文中一共展示了Template类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template tmpl) throws IOException
{
for(AstNode n:tmpl.getName()){
if(n instanceof Text){
String s = ((Text)n).getContent();
s=s.replace("\n", "").replace("\r", "");
if (!s.trim().isEmpty()) {
curTpls.add(s);
//if we set a list of templates we want to mark in the
//body, check the current one and mark it, if necessary
if(templatesToMark!=null&&containsIgnoreCase(templatesToMark,s)){
bodyBuilder.append(TEMPLATE_MARKER_PREFIX);
bodyBuilder.append(s);
bodyBuilder.append(TEMPLATE_MARKER_SUFFIX);
}
}
}
}
}
示例2: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template tmpl) throws IOException
{
for(AstNode n:tmpl.getName()){
if(n instanceof Text){
add(((Text)n).getContent());
}
}
}
示例3: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
@Override
public void visit(Template tmpl) throws IOException {
String name = ((StringContentNode) tmpl.getName().get(0)).getContent();
if (SITENAME.equals(name)) {
print(sitename);
} else {
super.visit(tmpl);
}
}
示例4: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(final Template template) {
final String templateName = AstUtils.getText(template.getName());
// Handle the special template escapes for pipe and equals signs
if (templateName.equals("!")) {
// See http://en.wikipedia.org/wiki/Template:!
builder.get().append('|');
} else if (templateName.equals("=")) {
// See http://en.wikipedia.org/wiki/Template:=
builder.get().append('=');
} else if (templateName.equals(":")) {
// See http://en.wikipedia.org/wiki/Template:Colon
builder.get().append(':');
} else if (templateName.equals(";")) {
// See http://en.wikipedia.org/wiki/Template:;
builder.get().append(';');
} else if (templateName.equalsIgnoreCase("Null")) {
// See http://en.wikipedia.org/wiki/Template:Null
// Don't appent anything
} else if (templateName.equalsIgnoreCase("Spaces")) {
// See http://en.wikipedia.org/wiki/Template:Spaces
int nSpaces = 1;
if (!template.isEmpty()) {
try {
final String argTet = AstUtils.getText(template.getArgs().get(0));
nSpaces = Integer.valueOf(argTet);
} catch (Throwable throwable) {
LOG.log(Level.WARNING, "Ill-formed template \"{0}\": {1}",
new Object[]{getText(template.getName()), throwable});
}
}
for (int i = 0; i < nSpaces; i++)
builder.get().append(' ');
} else {
iterate(template);
}
}
示例5: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template n)
{
}
示例6: visit
import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template n) {
}