Mercurial > hg > RemoteEditor > Eclipse
view src/sample/merge/Rep_Cmd.java @ 17:b409b85ab73f
*** empty log message ***
author | pin |
---|---|
date | Tue, 24 Oct 2006 19:14:11 +0900 |
parents | d8a7523ee386 |
children | e87cae12907e |
line wrap: on
line source
package sample.merge; public class Rep_Cmd { public int cmd; public int sid; public int eid; public int seq; public int len; public int lineno; public int stat; public String string; public Rep_Cmd(int cmd,int sid,int eid, int seq, int len, int lineno, String string) throws Exception { this.cmd = cmd; this.sid = sid; this.eid = eid; this.seq = seq; this.len = len; this.lineno = lineno; this.string = string; } public String toString(){ return string; } }