// // VersionObject.java // // WELD Java Client Persistent Object Management Package // Copyright Francis Chan (fchan@ic.eecs.berkeley.edu), 1997 // University of California, Berkeley // // // This program is in the public domain. // Permission to use, copy, modify, and distribute this software // and its documentation for NON-COMMERCIAL purposes and // without fee is hereby granted, as long as credit is given. import java.util.Vector; import java.io.StreamTokenizer; /** * * VersionObject Class * * This is a class which is used to represent a version object node * in the data backend. * (extends PersistentObject only to take advantage of the built-in * network and method capabilities. * not meant to be saved.) * * @version 1.0 February 1997 * @author Francis Chan */ public class VersionObject extends PersistentObject{ // for persistent object public static final String objectClassName = "VersionObject"; public static final int numField = 0; public static final int numObjField = 0; /** * Constructor for VersionObject * * (Does nothing in particular) */ public VersionObject(){ netObjSetup(numField, numObjField, objectClassName); } /*----------------------------------------------------------- * The code below is required for extending PersistentObject * (should not be called) *-----------------------------------------------------------*/ protected void setObjFields() { } protected void getObjFields() { } }