summaryrefslogtreecommitdiffstats
blob: df4ab9bfb6bbd0439c38e2fe0ff63b83947bd98f (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
53
54
55
56
57
58
59
60
61
62
63
64
/*  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 WhiteboardLineElement extends WhiteboardElement {

    private final int x1_, x2_, y1_, y2_;
    
    private WhiteboardColor color_ = new WhiteboardColor();
    
    private int penWidth_ = 1;

    public WhiteboardLineElement(int x1,int y1,int x2,int y2) {
        x1_ = x1;
        y1_ = y1;
        x2_ = x2;
        y2_ = y2;
    }
    
    public int x1() {
        return x1_;
    }
    
    public int x2() {
        return x2_;
    }
    
    public int y1() {
        return y1_;
    }
    
    public int y2() {
        return y2_;
    }
    
    public WhiteboardColor getColor() {
        return color_;
    }
    
    public void setColor(WhiteboardColor color) {
        color_ = color;
    }
    
    public int getPenWidth() {
        return penWidth_;
    }
    
    public void setPenWidth(int penWidth) {
        penWidth_ = penWidth;
    }

    @Override
    public void accept(WhiteboardElementVisitor visitor) {
        visitor.visit(this);
    }

}