本文整理了Java中com.koolearn.klibrary.text.view.ZLTextWord.isASpace()
方法的一些代码示例,展示了ZLTextWord.isASpace()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLTextWord.isASpace()
方法的具体详情如下:
包路径:com.koolearn.klibrary.text.view.ZLTextWord
类名称:ZLTextWord
方法名:isASpace
暂无
代码示例来源:origin: ydcx/KooReader
public boolean add(ZLTextElementArea area) {
synchronized (myAreas) {
if (myCurrentElementRegion != null
&& myCurrentElementRegion.getSoul().accepts(area)) {
myCurrentElementRegion.extend();
} else {
ZLTextRegion.Soul soul = null;
final ZLTextHyperlink hyperlink = area.Style.Hyperlink;
if (hyperlink.Id != null) {
soul = new ZLTextHyperlinkRegionSoul(area, hyperlink);
} else if (area.Element instanceof ZLTextImageElement) {
soul = new ZLTextImageRegionSoul(area, (ZLTextImageElement)area.Element);
} else if (area.Element instanceof ZLTextVideoElement) {
soul = new ZLTextVideoRegionSoul(area, (ZLTextVideoElement)area.Element);
} else if (area.Element instanceof ZLTextWord && !((ZLTextWord)area.Element).isASpace()) {
soul = new ZLTextWordRegionSoul(area, (ZLTextWord)area.Element);
} else if (area.Element instanceof ExtensionElement) {
soul = new ExtensionRegionSoul(area, (ExtensionElement)area.Element);
}
if (soul != null) {
myCurrentElementRegion = new ZLTextRegion(soul, myAreas, myAreas.size());
myElementRegions.add(myCurrentElementRegion);
} else {
myCurrentElementRegion = null;
}
}
return myAreas.add(area);
}
}
代码示例来源:origin: Jiangzqts/EpubRead
public boolean add(ZLTextElementArea area) {
synchronized (myAreas) {
if (myCurrentElementRegion != null
&& myCurrentElementRegion.getSoul().accepts(area)) {
myCurrentElementRegion.extend();
} else {
ZLTextRegion.Soul soul = null;
final ZLTextHyperlink hyperlink = area.Style.Hyperlink;
if (hyperlink.Id != null) {
soul = new ZLTextHyperlinkRegionSoul(area, hyperlink);
} else if (area.Element instanceof ZLTextImageElement) {
soul = new ZLTextImageRegionSoul(area, (ZLTextImageElement)area.Element);
} else if (area.Element instanceof ZLTextVideoElement) {
soul = new ZLTextVideoRegionSoul(area, (ZLTextVideoElement)area.Element);
} else if (area.Element instanceof ZLTextWord && !((ZLTextWord)area.Element).isASpace()) {
soul = new ZLTextWordRegionSoul(area, (ZLTextWord)area.Element);
} else if (area.Element instanceof ExtensionElement) {
soul = new ExtensionRegionSoul(area, (ExtensionElement)area.Element);
}
if (soul != null) {
myCurrentElementRegion = new ZLTextRegion(soul, myAreas, myAreas.size());
myElementRegions.add(myCurrentElementRegion);
} else {
myCurrentElementRegion = null;
}
}
return myAreas.add(area);
}
}
内容来源于网络,如有侵权,请联系作者删除!