KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > snow > utils > storage > Vectorizable


1 package snow.utils.storage;
2
3 import java.util.*;
4
5 /**
6  */

7 public interface Vectorizable {
8
9     public Vector<Object JavaDoc> getVectorRepresentation() throws VectorizeException;
10     public void createFromVectorRepresentation(Vector<Object JavaDoc> v) throws VectorizeException;
11 }
Popular Tags