本文整理了Java中org.fife.ui.rsyntaxtextarea.folding.YamlFoldParser
类的一些代码示例,展示了YamlFoldParser
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlFoldParser
类的具体详情如下:
包路径:org.fife.ui.rsyntaxtextarea.folding.YamlFoldParser
类名称:YamlFoldParser
[英]Fold parser for YAML. Based on org.fife.ui.rsyntaxtextarea.folding.HtmlFoldParser. Fold is started by each line. Each fold contains all following lines with indent higher than the current line.
[中]折叠YAML解析器。基于组织。法夫。用户界面。rsyntaxtextarea。折叠。HtmlFoldParser。折叠从每条线开始。每个折叠都包含以下缩进高于当前行的所有行。
代码示例来源:origin: bobbylight/RSyntaxTextArea
map.put(SYNTAX_STYLE_TYPESCRIPT, new CurlyFoldParser());
map.put(SYNTAX_STYLE_XML, new XmlFoldParser());
map.put(SYNTAX_STYLE_YAML, new YamlFoldParser());
代码示例来源:origin: bobbylight/RSyntaxTextArea
while (t!=null && t.isPaintable() && isSpaces(t)) {
indent += t.length();
t = t.getNextToken();
removeFold(currentFold, folds);
代码示例来源:origin: com.fifesoft/rsyntaxtextarea
while (t!=null && t.isPaintable() && isSpaces(t)) {
indent += t.length();
t = t.getNextToken();
removeFold(currentFold, folds);
代码示例来源:origin: com.fifesoft/rsyntaxtextarea
map.put(SYNTAX_STYLE_TYPESCRIPT, new CurlyFoldParser());
map.put(SYNTAX_STYLE_XML, new XmlFoldParser());
map.put(SYNTAX_STYLE_YAML, new YamlFoldParser());
内容来源于网络,如有侵权,请联系作者删除!