summaryrefslogtreecommitdiffstats
blob: 87ab2265948d3ba253ed0e0dc19d3ee8d4a2402d (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
/*  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 WhiteboardDeleteOperation extends WhiteboardOperation {

    private String elementID_ = "";
    
    public WhiteboardDeleteOperation() {
        // Empty Constructor
    }
    
    public WhiteboardDeleteOperation(WhiteboardDeleteOperation other) {
        super(other);
        this.elementID_ = other.elementID_;
    }
    
    public String getElementID() {
        return elementID_;
    }
    
    public void setElementID(String id) {
        elementID_ = id;
    }
    
}