summaryrefslogtreecommitdiffstats
blob: d980f7cf822823db404975385c582ab95a8fdb89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*  Copyright (c) 2016, Isode Limited, London, England.
 *  All rights reserved.
 *
 *  Acquisition and use of this software and related materials for any
 *  purpose requires a written license agreement from Isode Limited,
 *  or a written license from an organisation licensed by Isode Limited
 *  to grant such a license.
 *
 */
package com.isode.stroke.elements;

public class WhiteboardOperation {

    private String id_ = "";
    private String parentID_ = "";
    private int pos_ = 0;
    
    public WhiteboardOperation() {
        // Empty Constructor
    }
    
    public WhiteboardOperation(WhiteboardOperation other) {
        this.id_ = other.id_;
        this.parentID_ = other.parentID_;
        this.pos_ = other.pos_;
    }
    
    public String getID() {
        return id_;
    }

    public void setID(String id) {
        id_ = id;
    }

    public String getParentID() {
        return parentID_;
    }

    public void setParentID(String parentID) {
        parentID_ = parentID;
    }

    public int getPos() {
        return pos_;
    }

    public void setPos(int pos) {
        pos_ = pos;
    }

}