We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2396d commit 078b9a9Copy full SHA for 078b9a9
src/main/java/net/apnic/rdap/conformance/ContextList.java
@@ -2,9 +2,24 @@
2
3
import java.util.ArrayList;
4
5
+/**
6
+ * Represents a list of Context objects.
7
+ *
8
+ * Class is a wrapper around {@link java.util.ArrayList} that provides
9
+ * convience functions for getting information about a list of Context objects.
10
11
+ * Note: This class does not implement any ArrayList constructors as they are
12
+ * not needed at present.
13
+ */
14
public class ContextList
15
extends ArrayList<Context>
16
{
17
+ /**
18
+ * Indiciates if at least one Context object in this list has a failed
19
+ * result.
20
21
+ * @return boolean if at least one Context has a failed result.
22
23
public boolean hasFailedResult()
24
25
for(Context context : this)
0 commit comments