9package org.dartlang.analysis.server.protocol;
11import java.util.Arrays;
14import com.google.common.collect.Lists;
15import com.google.dart.server.utilities.general.JsonUtilities;
16import com.google.dart.server.utilities.general.ObjectUtilities;
17import com.google.gson.JsonArray;
18import com.google.gson.JsonElement;
19import com.google.gson.JsonObject;
20import com.google.gson.JsonPrimitive;
21import org.apache.commons.lang3.builder.HashCodeBuilder;
22import java.util.ArrayList;
23import java.util.Iterator;
24import org.apache.commons.lang3.StringUtils;
34@SuppressWarnings(
"unused")
54 private final String label;
72 ObjectUtilities.equals(other.label, label);
78 int offset = jsonObject.get(
"offset").getAsInt();
79 int length = jsonObject.get(
"length").getAsInt();
80 String label = jsonObject.get(
"label").getAsString();
85 if (jsonArray ==
null) {
88 ArrayList<ClosingLabel> list =
new ArrayList<ClosingLabel>(jsonArray.size());
89 Iterator<JsonElement> iterator = jsonArray.iterator();
90 while (iterator.hasNext()) {
91 list.add(fromJson(iterator.next().getAsJsonObject()));
119 HashCodeBuilder
builder =
new HashCodeBuilder();
127 JsonObject jsonObject =
new JsonObject();
128 jsonObject.addProperty(
"offset",
offset);
129 jsonObject.addProperty(
"length",
length);
130 jsonObject.addProperty(
"label", label);
136 StringBuilder
builder =
new StringBuilder();
static ClosingLabel fromJson(JsonObject jsonObject)
ClosingLabel(int offset, int length, String label)
boolean equals(Object obj)
static List< ClosingLabel > fromJsonArray(JsonArray jsonArray)