summaryrefslogtreecommitdiff
path: root/bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java')
-rw-r--r--bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java22
1 files changed, 21 insertions, 1 deletions
diff --git a/bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java b/bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java
index d5d43959..543a182e 100644
--- a/bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java
+++ b/bcprov/src/main/java/org/bouncycastle/asn1/BERSequenceParser.java
@@ -2,6 +2,9 @@ package org.bouncycastle.asn1;
import java.io.IOException;
+/**
+ * Parser for indefinite-length SEQUENCEs.
+ */
public class BERSequenceParser
implements ASN1SequenceParser
{
@@ -12,18 +15,35 @@ public class BERSequenceParser
this._parser = parser;
}
+ /**
+ * Read the next object in the SEQUENCE.
+ *
+ * @return the next object in the SEQUENCE, null if there are no more.
+ * @throws IOException if there is an issue reading the underlying stream.
+ */
public ASN1Encodable readObject()
throws IOException
{
return _parser.readObject();
}
+ /**
+ * Return an in-memory, encodable, representation of the SEQUENCE.
+ *
+ * @return a BERSequence.
+ * @throws IOException if there is an issue loading the data.
+ */
public ASN1Primitive getLoadedObject()
throws IOException
{
return new BERSequence(_parser.readVector());
}
-
+
+ /**
+ * Return an BERSequence representing this parser and its contents.
+ *
+ * @return an BERSequence
+ */
public ASN1Primitive toASN1Primitive()
{
try