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


Java Token.MARKUP_TAG_DELIMITER属性代码示例

本文整理汇总了Java中org.fife.ui.rsyntaxtextarea.Token.MARKUP_TAG_DELIMITER属性的典型用法代码示例。如果您正苦于以下问题:Java Token.MARKUP_TAG_DELIMITER属性的具体用法?Java Token.MARKUP_TAG_DELIMITER怎么用?Java Token.MARKUP_TAG_DELIMITER使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.fife.ui.rsyntaxtextarea.Token的用法示例。


在下文中一共展示了Token.MARKUP_TAG_DELIMITER属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getTagCloseInfo

/**
 * Grabs the token representing the closing of a tag (i.e.
 * "<code>&gt;</code>" or "<code>/&gt;</code>").  This should only be
 * called after a tag name has been parsed, to ensure  the "closing" of
 * other tags is not identified.
 * 
 * @param tagNameToken The token denoting the name of the tag.
 * @param textArea The text area whose contents are being parsed.
 * @param line The line we're currently on.
 * @param info On return, information about the closing of the tag is
 *        returned in this object.
 * @return The line number of the closing tag token.
 */
private int getTagCloseInfo(Token tagNameToken, RSyntaxTextArea textArea,
		int line, TagCloseInfo info) {

	info.reset();
	Token t = tagNameToken.getNextToken();

	do {

		while (t!=null && t.getType()!=Token.MARKUP_TAG_DELIMITER) {
			t = t.getNextToken();
		}

		if (t!=null) {
			info.closeToken = t;
			info.line = line;
			break;
		}

	} while (++line<textArea.getLineCount() &&
			(t=textArea.getTokenListForLine(line))!=null);

	return line;

}
 
开发者ID:curiosag,项目名称:ftc,代码行数:37,代码来源:HtmlFoldParser.java


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