1package org.bouncycastle.asn1;
2
3import java.io.IOException;
4
5public interface ASN1TaggedObjectParser
6    extends ASN1Encodable, InMemoryRepresentable
7{
8    public int getTagNo();
9
10    public ASN1Encodable getObjectParser(int tag, boolean isExplicit)
11        throws IOException;
12}
13