/** * Declaration for MemberInfo object * (an object for the manipulation of member pair for * OctObjects (className and objectId) * not a struct in the original Oct system) */ public class MemberInfo { String objClassName; int id; // we might need this... // long externalId; // class name public static final String className = "MemberInfo"; public MemberInfo(String objectClassName, int id) { this.objClassName = new String(objectClassName); this.id = id; } }