blob: 68d63eb98d1b4f6dc1ff7fb555d3ebc8e78a8d41 [file] [log] [blame]
package org.bouncycastle.asn1;
import java.util.Vector;
/**
* a general class for building up a vector of DER encodable objects -
* this will eventually be superceded by ASN1EncodableVector so you should
* use that class in preference.
*/
public class DEREncodableVector
{
Vector v = new Vector();
/**
* @deprecated use ASN1EncodableVector instead.
*/
public DEREncodableVector()
{
}
public void add(
DEREncodable obj)
{
v.addElement(obj);
}
public DEREncodable get(
int i)
{
return (DEREncodable)v.elementAt(i);
}
public int size()
{
return v.size();
}
}