All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scudata.dw.ComTableRecord Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.dw;

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import com.scudata.dm.DataStruct;
import com.scudata.dm.Record;
/**
 * ?????¼??
 * @author runqian
 *
 */
class ComTableRecord extends Record {
	private long recordSeq; // ??¼???
	
	/**
	 * ???л?ʱʹ??
	 */
	public ComTableRecord() {}

	public ComTableRecord(DataStruct ds) {
		super(ds);
	}
	
	public void writeExternal(ObjectOutput out) throws IOException {
		super.writeExternal(out);
		out.writeLong(recordSeq);
	}
	
	public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
		super.readExternal(in);
		recordSeq = in.readLong();
	}
	
	public long getRecordSeq() {
		return recordSeq;
	}

	public void setRecordSeq(long recordSeq) {
		this.recordSeq = recordSeq;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy