本文整理汇总了Java中org.waveprotocol.wave.model.document.operation.Attributes.size方法的典型用法代码示例。如果您正苦于以下问题:Java Attributes.size方法的具体用法?Java Attributes.size怎么用?Java Attributes.size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.waveprotocol.wave.model.document.operation.Attributes
的用法示例。
在下文中一共展示了Attributes.size方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleAttribute
import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
final void handleAttribute(Attributes attrs) throws InvalidSchemaException {
String name = attrs.get(NAME_ATTRIBUTE_NAME);
String values = attrs.get(VALUES_ATTRIBUTE_NAME);
String required = attrs.get(REQUIRED_ATTRIBUTE_NAME);
if (name == null) {
throw new InvalidSchemaException("Missing attribute: " + NAME_ATTRIBUTE_NAME);
}
if (values == null) {
throw new InvalidSchemaException("Missing attribute: " + VALUES_ATTRIBUTE_NAME);
}
if (required == null) {
throw new InvalidSchemaException("Missing attribute: " + REQUIRED_ATTRIBUTE_NAME);
}
if (attrs.size() != 3) {
throw new InvalidSchemaException("Encountered more attributes than the expected three");
}
checkAttributeName(name);
if (required.equals(TRUE_ATTRIBUTE_VALUE)) {
attributesPattern.addRequired(name);
} else if (!required.equals(FALSE_ATTRIBUTE_VALUE)) {
throw new InvalidSchemaException(
"Invalid value for attribute " + REQUIRED_ATTRIBUTE_NAME + ": " + required);
}
RegularExpressionChecker.checkRegularExpression(values);
attributesPattern.addValuePattern(name, values);
}
示例2: handleText
import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
final void handleText(Attributes attrs) throws InvalidSchemaException {
String type = attrs.get(TYPE_ATTRIBUTE_NAME);
String chars = attrs.get(CHARACTERS_ATTRIBUTE_NAME);
if (type == null) {
throw new InvalidSchemaException("Missing attribute: " + TYPE_ATTRIBUTE_NAME);
}
if (chars == null) {
throw new InvalidSchemaException("Missing attribute: " + CHARACTERS_ATTRIBUTE_NAME);
}
if (attrs.size() != 2) {
throw new InvalidSchemaException("Encountered more attributes than the expected two");
}
if (type.equals(BLACKLIST_ATTRIBUTE_VALUE)) {
characterPattern.blacklistCharacters(extractCodePoints(chars));
} else if (type.equals(WHITELIST_ATTRIBUTE_VALUE)) {
characterPattern.whitelistCharacters(extractCodePoints(chars));
} else {
throw new InvalidSchemaException(
"Invalid value for attribute " + TYPE_ATTRIBUTE_NAME + ": " + type);
}
}
示例3: extractName
import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
private static String extractName(String elementType, Attributes attrs)
throws InvalidSchemaException {
String name = attrs.get(NAME_ATTRIBUTE_NAME);
if (name == null) {
throw new InvalidSchemaException(
"Missing attribute \"" + NAME_ATTRIBUTE_NAME + "\" in element: " + elementType);
}
if (attrs.size() != 1) {
throw new InvalidSchemaException(
"Encountered an attribute other than \"" + NAME_ATTRIBUTE_NAME + "\" in element: "
+ elementType);
}
return name;
}
示例4: attributesEqual
import org.waveprotocol.wave.model.document.operation.Attributes; //导入方法依赖的package包/类
private boolean attributesEqual(Attributes a, Attributes b) {
if (a.size() != b.size()) { return false; }
for (Map.Entry<String, String> ae : a.entrySet()) {
if (!equal(ae.getValue(), b.get(ae.getKey()))) { return false; }
}
return true;
}