Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package model;
- public class Row_i implements Cloneable{
- public int id_A, id_B, startPosA, startPosB, endPosA, endPosB, rowType;
- public Row_i clone() {
- try {
- return (Row_i)super.clone();
- } catch(CloneNotSupportedException e) {
- return null;
- }
- }
- public Row_i() {}
- public Row_i(int id_A, int id_B, int startPosA, int startPosB, int endPosA, int endPosB, int rowType) {
- this.id_A = id_A;
- this.id_B = id_B;
- this.startPosA = startPosA;
- this.startPosB = startPosB;
- this.endPosA = endPosA;
- this.endPosB = endPosB;
- this.rowType = rowType;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement