import java.util.*; import java.io.*; public class TableSeqListType implements Serializable { protected String Abbrev; protected int Rcount; protected int Maxver; protected Vector VersionStats; String getAbbrev() { return Abbrev; } void setAbbrev(String value) { Abbrev = value; } int getRcount() { return Rcount; } void setRcount(int value) { Rcount = value; } int getMaxver() { return Maxver; } void setMaxver(int value) { Maxver = value; } TableSeqListType( String abbrev ) { Abbrev = abbrev; } }