当前位置: 首页>>代码示例>>Java>>正文


Java Template类代码示例

本文整理汇总了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);
				}
	}
}

	}
}
 
开发者ID:dkpro,项目名称:dkpro-jwpl,代码行数:21,代码来源:SectionExtractor.java

示例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());
		}
	}
}
 
开发者ID:dkpro,项目名称:dkpro-jwpl,代码行数:9,代码来源:TemplateNameExtractor.java

示例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);
  }
}
 
开发者ID:roubert,项目名称:mediawiki-googlesites,代码行数:10,代码来源:SiteImporterImpl.java

示例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);
    }
}
 
开发者ID:hamishmorgan,项目名称:WAG,代码行数:41,代码来源:GetTextAstVisitor.java

示例5: visit

import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template n)
{
}
 
开发者ID:dkpro,项目名称:dkpro-jwpl,代码行数:4,代码来源:PlainTextConverter.java

示例6: visit

import org.sweble.wikitext.lazy.preprocessor.Template; //导入依赖的package包/类
public void visit(Template n) {
}
 
开发者ID:languagetool-org,项目名称:languagetool,代码行数:3,代码来源:TextConverter.java


注:本文中的org.sweble.wikitext.lazy.preprocessor.Template类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。