• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Template类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java JsonArray类代码示例发布时间:2022-05-22
下一篇:
Java DaemonThreadFactory类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap