- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.koolearn.klibrary.text.view.ZLTextParagraphCursor.getParagraphLength()
方法的一些代码示例,展示了ZLTextParagraphCursor.getParagraphLength()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLTextParagraphCursor.getParagraphLength()
方法的具体详情如下:
包路径:com.koolearn.klibrary.text.view.ZLTextParagraphCursor
类名称:ZLTextParagraphCursor
方法名:getParagraphLength
暂无
代码示例来源:origin: Jiangzqts/EpubRead
ZLTextLineInfo(ZLTextParagraphCursor paragraphCursor, int elementIndex, int charIndex, ZLTextStyle style) {
ParagraphCursor = paragraphCursor;
ParagraphCursorLength = paragraphCursor.getParagraphLength();
StartElementIndex = elementIndex;
StartCharIndex = charIndex;
RealStartElementIndex = elementIndex;
RealStartCharIndex = charIndex;
EndElementIndex = elementIndex;
EndCharIndex = charIndex;
StartStyle = style;
}
代码示例来源:origin: ydcx/KooReader
ZLTextLineInfo(ZLTextParagraphCursor paragraphCursor, int elementIndex, int charIndex, ZLTextStyle style) {
ParagraphCursor = paragraphCursor;
ParagraphCursorLength = paragraphCursor.getParagraphLength();
StartElementIndex = elementIndex;
StartCharIndex = charIndex;
RealStartElementIndex = elementIndex;
RealStartCharIndex = charIndex;
EndElementIndex = elementIndex;
EndCharIndex = charIndex;
StartStyle = style;
}
代码示例来源:origin: ydcx/KooReader
public boolean isEndOfParagraph() {
return
myParagraphCursor != null &&
myElementIndex == myParagraphCursor.getParagraphLength();
}
代码示例来源:origin: Jiangzqts/EpubRead
public boolean isEndOfParagraph() {
return
myParagraphCursor != null &&
myElementIndex == myParagraphCursor.getParagraphLength();
}
代码示例来源:origin: ydcx/KooReader
public void moveToParagraphEnd() {
if (!isNull()) {
myElementIndex = myParagraphCursor.getParagraphLength();
myCharIndex = 0;
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public void moveToParagraphEnd() {
if (!isNull()) {
myElementIndex = myParagraphCursor.getParagraphLength();
myCharIndex = 0;
}
}
代码示例来源:origin: ydcx/KooReader
private ZLTextLineInfo processTextLine(
ZLTextPage page,
ZLTextParagraphCursor paragraphCursor,
final int startIndex,
final int startCharIndex,
final int endIndex,
ZLTextLineInfo previousInfo
) {
final ZLTextLineInfo info = processTextLineInternal(
page, paragraphCursor, startIndex, startCharIndex, endIndex, previousInfo
);
if (info.EndElementIndex == startIndex && info.EndCharIndex == startCharIndex) {
info.EndElementIndex = paragraphCursor.getParagraphLength();
info.EndCharIndex = 0;
// TODO: add error element
}
return info;
}
代码示例来源:origin: Jiangzqts/EpubRead
private ZLTextLineInfo processTextLine(
ZLTextPage page,
ZLTextParagraphCursor paragraphCursor,
final int startIndex,
final int startCharIndex,
final int endIndex,
ZLTextLineInfo previousInfo
) {
final ZLTextLineInfo info = processTextLineInternal(
page, paragraphCursor, startIndex, startCharIndex, endIndex, previousInfo
);
if (info.EndElementIndex == startIndex && info.EndCharIndex == startCharIndex) {
info.EndElementIndex = paragraphCursor.getParagraphLength();
info.EndCharIndex = 0;
// TODO: add error element
}
return info;
}
代码示例来源:origin: ydcx/KooReader
public void moveTo(int wordIndex, int charIndex) {
LogUtil.i13("moveTo2:" + toString());
if (!isNull()) {
if (wordIndex == 0 && charIndex == 0) {
myElementIndex = 0;
myCharIndex = 0;
} else {
wordIndex = Math.max(0, wordIndex);
int size = myParagraphCursor.getParagraphLength();
if (wordIndex > size) {
myElementIndex = size;
myCharIndex = 0;
} else {
myElementIndex = wordIndex;
setCharIndex(charIndex);
}
}
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public void moveTo(int wordIndex, int charIndex) {
LogUtil.i13("moveTo2:" + toString());
if (!isNull()) {
if (wordIndex == 0 && charIndex == 0) {
myElementIndex = 0;
myCharIndex = 0;
} else {
wordIndex = Math.max(0, wordIndex);
int size = myParagraphCursor.getParagraphLength();
if (wordIndex > size) {
myElementIndex = size;
myCharIndex = 0;
} else {
myElementIndex = wordIndex;
setCharIndex(charIndex);
}
}
}
}
代码示例来源:origin: Jiangzqts/EpubRead
private int sizeOfTextBeforeCursor(ZLTextWordCursor wordCursor) {
final ZLTextParagraphCursor paragraphCursor = wordCursor.getParagraphCursor();
if (paragraphCursor == null) {
return -1;
}
final int paragraphIndex = paragraphCursor.Index;
int sizeOfText = myModel.getTextLength(paragraphIndex - 1);
final int paragraphLength = paragraphCursor.getParagraphLength();
if (paragraphLength > 0) {
sizeOfText +=
(myModel.getTextLength(paragraphIndex) - sizeOfText)
* wordCursor.getElementIndex()
/ paragraphLength;
}
return sizeOfText;
}
代码示例来源:origin: ydcx/KooReader
private int sizeOfTextBeforeCursor(ZLTextWordCursor wordCursor) {
final ZLTextParagraphCursor paragraphCursor = wordCursor.getParagraphCursor();
if (paragraphCursor == null) {
return -1;
}
final int paragraphIndex = paragraphCursor.Index;
int sizeOfText = myModel.getTextLength(paragraphIndex - 1);
final int paragraphLength = paragraphCursor.getParagraphLength();
if (paragraphLength > 0) {
sizeOfText +=
(myModel.getTextLength(paragraphIndex) - sizeOfText)
* wordCursor.getElementIndex()
/ paragraphLength;
}
return sizeOfText;
}
代码示例来源:origin: ydcx/KooReader
public ZLTextMark getMark() {
if (myParagraphCursor == null) {
return null;
}
final ZLTextParagraphCursor paragraph = myParagraphCursor;
int paragraphLength = paragraph.getParagraphLength();
int wordIndex = myElementIndex;
while ((wordIndex < paragraphLength) && (!(paragraph.getElement(wordIndex) instanceof ZLTextWord))) {
wordIndex++;
}
if (wordIndex < paragraphLength) {
return new ZLTextMark(paragraph.Index, ((ZLTextWord) paragraph.getElement(wordIndex)).getParagraphOffset(), 0);
}
return new ZLTextMark(paragraph.Index + 1, 0, 0);
}
代码示例来源:origin: Jiangzqts/EpubRead
public ZLTextMark getMark() {
if (myParagraphCursor == null) {
return null;
}
final ZLTextParagraphCursor paragraph = myParagraphCursor;
int paragraphLength = paragraph.getParagraphLength();
int wordIndex = myElementIndex;
while ((wordIndex < paragraphLength) && (!(paragraph.getElement(wordIndex) instanceof ZLTextWord))) {
wordIndex++;
}
if (wordIndex < paragraphLength) {
return new ZLTextMark(paragraph.Index, ((ZLTextWord) paragraph.getElement(wordIndex)).getParagraphOffset(), 0);
}
return new ZLTextMark(paragraph.Index + 1, 0, 0);
}
代码示例来源:origin: Jiangzqts/EpubRead
private ParagraphSize paragraphSize(ZLTextPage page, ZLTextWordCursor cursor, boolean beforeCurrentPosition, int unit) {
final ParagraphSize size = new ParagraphSize();
final ZLTextParagraphCursor paragraphCursor = cursor.getParagraphCursor();
if (paragraphCursor == null) {
return size;
}
final int endElementIndex =
beforeCurrentPosition ? cursor.getElementIndex() : paragraphCursor.getParagraphLength();
resetTextStyle();
int wordIndex = 0;
int charIndex = 0;
ZLTextLineInfo info = null;
while (wordIndex != endElementIndex) {
final ZLTextLineInfo prev = info;
info = processTextLine(page, paragraphCursor, wordIndex, charIndex, endElementIndex, prev);
wordIndex = info.EndElementIndex;
charIndex = info.EndCharIndex;
size.Height += infoSize(info, unit);
if (prev == null) {
size.TopMargin = info.VSpaceBefore;
}
size.BottomMargin = info.VSpaceAfter;
}
return size;
}
代码示例来源:origin: ydcx/KooReader
private ParagraphSize paragraphSize(ZLTextPage page, ZLTextWordCursor cursor, boolean beforeCurrentPosition, int unit) {
final ParagraphSize size = new ParagraphSize();
final ZLTextParagraphCursor paragraphCursor = cursor.getParagraphCursor();
if (paragraphCursor == null) {
return size;
}
final int endElementIndex =
beforeCurrentPosition ? cursor.getElementIndex() : paragraphCursor.getParagraphLength();
resetTextStyle();
int wordIndex = 0;
int charIndex = 0;
ZLTextLineInfo info = null;
while (wordIndex != endElementIndex) {
final ZLTextLineInfo prev = info;
info = processTextLine(page, paragraphCursor, wordIndex, charIndex, endElementIndex, prev);
wordIndex = info.EndElementIndex;
charIndex = info.EndCharIndex;
size.Height += infoSize(info, unit);
if (prev == null) {
size.TopMargin = info.VSpaceBefore;
}
size.BottomMargin = info.VSpaceAfter;
}
return size;
}
代码示例来源:origin: ydcx/KooReader
private void skip(ZLTextPage page, ZLTextWordCursor cursor, int unit, int size) {
final ZLTextParagraphCursor paragraphCursor = cursor.getParagraphCursor();
if (paragraphCursor == null) {
return;
}
final int endElementIndex = paragraphCursor.getParagraphLength();
resetTextStyle();
applyStyleChanges(paragraphCursor, 0, cursor.getElementIndex());
ZLTextLineInfo info = null;
while (!cursor.isEndOfParagraph() && size > 0) {
info = processTextLine(page, paragraphCursor, cursor.getElementIndex(), cursor.getCharIndex(), endElementIndex, info);
cursor.moveTo(info.EndElementIndex, info.EndCharIndex);
size -= infoSize(info, unit);
}
}
代码示例来源:origin: Jiangzqts/EpubRead
private void skip(ZLTextPage page, ZLTextWordCursor cursor, int unit, int size) {
final ZLTextParagraphCursor paragraphCursor = cursor.getParagraphCursor();
if (paragraphCursor == null) {
return;
}
final int endElementIndex = paragraphCursor.getParagraphLength();
resetTextStyle();
applyStyleChanges(paragraphCursor, 0, cursor.getElementIndex());
ZLTextLineInfo info = null;
while (!cursor.isEndOfParagraph() && size > 0) {
info = processTextLine(page, paragraphCursor, cursor.getElementIndex(), cursor.getCharIndex(), endElementIndex, info);
cursor.moveTo(info.EndElementIndex, info.EndCharIndex);
size -= infoSize(info, unit);
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public void traverse(ZLTextPosition from, ZLTextPosition to) {
final int fromParagraph = from.getParagraphIndex();
final int toParagraph = to.getParagraphIndex();
ZLTextParagraphCursor cursor = myView.cursor(fromParagraph);
for (int i = fromParagraph; i <= toParagraph; ++i) {
final int fromElement = i == fromParagraph ? from.getElementIndex() : 0;
final int toElement = i == toParagraph ? to.getElementIndex() : cursor.getParagraphLength() - 1;
for (int j = fromElement; j <= toElement; j++) {
final ZLTextElement element = cursor.getElement(j);
if (element == ZLTextElement.HSpace) {
processSpace();
} else if (element == ZLTextElement.NBSpace) {
processNbSpace();
} else if (element instanceof ZLTextWord) {
processWord((ZLTextWord)element);
}
}
if (i < toParagraph) {
processEndOfParagraph();
cursor = cursor.next();
}
}
}
}
代码示例来源:origin: ydcx/KooReader
public void traverse(ZLTextPosition from, ZLTextPosition to) {
final int fromParagraph = from.getParagraphIndex();
final int toParagraph = to.getParagraphIndex();
ZLTextParagraphCursor cursor = myView.cursor(fromParagraph);
for (int i = fromParagraph; i <= toParagraph; ++i) {
final int fromElement = i == fromParagraph ? from.getElementIndex() : 0;
final int toElement = i == toParagraph ? to.getElementIndex() : cursor.getParagraphLength() - 1;
for (int j = fromElement; j <= toElement; j++) {
final ZLTextElement element = cursor.getElement(j);
if (element == ZLTextElement.HSpace) {
processSpace();
} else if (element == ZLTextElement.NBSpace) {
processNbSpace();
} else if (element instanceof ZLTextWord) {
processWord((ZLTextWord)element);
}
}
if (i < toParagraph) {
processEndOfParagraph();
cursor = cursor.next();
}
}
}
}
我目前正在创建一个正则表达式来拆分所有匹配以下格式的字符串:&[text(text - text text) !text]。这里的文本实际上可以是任何字符。并且间距很重要。文本将如图所示列出。 我已经
这个问题在这里已经有了答案: Remove duplicate commas and extra commas at start/end with RegExp in Javascript, and
我有以下代码。 from xml.dom.minidom import Document doc = Document() root = doc.createElement('root') doc.a
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Find text string in jQuery and make it bold 如何使用 jQuer
我使用 libmagic 在我的元素的 Web 界面中获取文件的 MIME 类型。我在 css 和 js 文件上得到文本/纯 mime 类型。 例如 chromium 显示以下警告: Resource
起初我必须阅读很多教程,但我仍然不知道我做错了什么...... 我想内联使用 4 个 div。在我想放置的那些 div 中:文本、图像、文本、文本。我希望中间文本自动设置为最大宽度。 我写了一个简单的
我想替换所有出现的 [b: "text"]至text使用 JavaScript 和 RegEx。目前我知道如何替换 [b: ""]至使用'/\[b: ""\]/g'但我不知道如果 " 之间有文本该怎么
这可能是一个幼稚的问题,但我想知道是否有比使用 text() 更好的方法将文本添加到绘图中。注意,我也在使用 layout()以及。具体来说,我有一个情节的一部分,我想在其中添加一些带有标题的文本,然
我必须反复从 latex 源粘贴代码,因此每次都必须做很多查找和替换操作('“a'=>'ä','” o'=>'ö',...) 。 有没有一种方法可以存储这些搜索和替换规则,例如,我可以通过一次按键执行
当我在Sublime Text 3代码屏幕中编写代码时,它连续地向右滑动,如图所示。我该怎么办? 请注意第10行。 最佳答案 如果您只想为当前 View (正在编辑的当前文件)激活自动换行,只需vie
是否有可能更改 sublime text 中的默认字体目录?我只想使用可移植 sublime 文本存储在我的 pendrive 上的字体,这样我就不必在我使用可移植 sublime 文本的每台机器上安
我是 Android 开发的新手,我有一个愚蠢的问题。如何将“文本字段”框放在一行中的文本旁边。 例子: Please Enter the number: [ ] 关于 "t
我想自动将“我的文本”更改为“我的文本”,因为这是用德语写的正确方式。引号可以在文本中的任何位置。 有没有一种简单的方法可以实现这一点? 解决方案应该检查第一个字符,最后一个字符,比如“this”,或
我想知道是否有特殊的语法来绑定(bind)与现有文本连接的文本。 像这样。 显然,这行不通。 什么是最佳实践? 使用 SL4。 最佳答案 使用StringFormat在 Binding 上。 WPF
我认为它应该打印“真实文本”,因为它相当于 true console.log('true text' || true ? 'text' : 'text1'); 但是,输出是“文本”;抱歉,如果是愚蠢的
有没有办法通过 css 打破文本,以便中间有一个“空白”?目前我正在通过手工打破文本来解决这个问题 -但这是愚蠢的。我知道有一个函数可以让文本在另一个 div 中结束和开始,但 IE 不支持它。 文本
我想为我的Tcl/Tk工具实现一个效果:在text控件中,根据具体情况,希望高亮一些线条的背景色,其他线条正常透明.有可能吗? 我尝试了一些选项,例如:-highlightbackground 、-i
我正在尝试解析原始维基百科文章内容,例如the article on Sweden ,使用re.sub()。但是,我在尝试替换 {{some text}} block 时遇到了问题,因为它们可以包含更
我试图先删除 ComboBox 中的所有内容。然后在其前面添加文本,但保留了一些旧文本。有没有办法重置或清除 ComboBox?或者我怎样才能最好地实现这一目标? public void GetBad
我知道我们应该创建 Example对象并将其传递给 nlp.update() 方法。根据 docs 中的示例, 我们有 for raw_text, entity_offsets in train_da
我是一名优秀的程序员,十分优秀!