summaryrefslogtreecommitdiffstats
blob: 4cadc816eec888ce67585356fe06b810bf7b9179 (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
65
66
67
68
69
70
71
/*  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 WhiteboardEllipseElement extends WhiteboardElement {

    private final int cx_, cy_, rx_, ry_;
    private WhiteboardColor penColor_;
    private WhiteboardColor brushColor_;
    private int penWidth_;
    
    public WhiteboardEllipseElement(int cx, int cy, int rx, int ry) {
        cx_ = cx;
        cy_ = cy;
        rx_ = rx;
        ry_ = ry;
    }
    
    public int getCX() {
        return cx_;
    }

    public int getCY() {
        return cy_;
    }

    public int getRX() {
        return rx_;
    }

    public int getRY() {
        return ry_;
    }

    public WhiteboardColor getPenColor() {
        return penColor_;
    }

    public void setPenColor(WhiteboardColor color) {
        penColor_ = color;
    }

    public WhiteboardColor getBrushColor() {
        return brushColor_;
    }

    public void setBrushColor(WhiteboardColor color) {
        brushColor_ = color;
    }

    public int getPenWidth() {
        return penWidth_;
    }

    public void setPenWidth(int penWidth) {
        penWidth_ = penWidth;
    }

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

}