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


Java Attributes.isEmpty方法代码示例

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


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

示例1: toConciseString

import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
public static String toConciseString(Attributes attributes) {
  if (attributes.isEmpty()) {
    return "{}";
  }
  StringBuilder b = new StringBuilder();
  b.append("{ ");
  boolean first = true;
  for (Map.Entry<String, String> entry : attributes.entrySet()) {
    if (first) {
      first = false;
    } else {
      b.append(", ");
    }
    b.append(entry.getKey());
    b.append("=");
    b.append(literalString(entry.getValue()));
  }
  b.append(" }");
  return b.toString();
}
 
开发者ID:jorkey,项目名称:Wiab.pro,代码行数:21,代码来源:DocOpUtil.java

示例2: apply

import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
public <N, E extends N, T extends N> E apply(LocalDocument<N, E, T> localDoc, E parent,
    N nodeAfter, Map<String, Object> before, Map<String, Object> after, boolean isEditing) {
  if (!isEditing) {
    return null;
  }

  Attributes attributes = Suggestion.maybeCreateSuggestions(before);

  if (attributes == null || attributes.isEmpty()) {
    return null;
  }

  E e = localDoc.transparentCreate(SuggestionRenderer.FULL_TAGNAME, attributes, parent,
      nodeAfter);
  if (e == null) {
    return null;
  }

  ContentElement contentElement = (ContentElement) e;
  HasSuggestions suggestion =
      contentElement.getProperty(SuggestionRenderer.HAS_SUGGESTIONS_PROP);
  contentElement.getSuggestionsManager().registerElement(suggestion);
  return e;
}
 
开发者ID:jorkey,项目名称:Wiab.pro,代码行数:25,代码来源:LinkAnnotationHandler.java

示例3: lcHandleNewLine

import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
private <N, E extends N, T extends N> void lcHandleNewLine(RichTextTokenizer tokenizer,
    Nindo.Builder builder, ReadableDomDocument<N, E, T> doc, N splitContainer,
    Attributes attributes) {
  // TODO(user): Don't create a new paragraph if the attributes are the same,
  // and is first token.
  boolean isLastToken = !tokenizer.hasNext();
  if ((!isFirstToken && !isLastToken) || !attributes.isEmpty()) {
    startElement(builder, LineContainers.LINE_TAGNAME, attributes);
    endElement(builder);
  }
}
 
开发者ID:jorkey,项目名称:Wiab.pro,代码行数:12,代码来源:RichTextMutationBuilder.java


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