1 17 18 package org.apache.geronimo.util.asn1; 19 20 import java.util.Vector ; 21 22 27 public class DEREncodableVector 28 { 29 private Vector v = new Vector (); 30 31 public void add( 32 DEREncodable obj) 33 { 34 v.addElement(obj); 35 } 36 37 public DEREncodable get( 38 int i) 39 { 40 return (DEREncodable)v.elementAt(i); 41 } 42 43 public int size() 44 { 45 return v.size(); 46 } 47 } 48 | Popular Tags |