com.koolearn.klibrary.text.view.ZLTextWord.isASpace()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(69)

本文整理了Java中com.koolearn.klibrary.text.view.ZLTextWord.isASpace()方法的一些代码示例,展示了ZLTextWord.isASpace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLTextWord.isASpace()方法的具体详情如下:
包路径:com.koolearn.klibrary.text.view.ZLTextWord
类名称:ZLTextWord
方法名:isASpace

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);
  }
}

相关文章