1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.yaml.snakeyaml.immutable;
17
18 public class Shape {
19 private Color color;
20 private Point point;
21 private Point3d point3d;
22 private Integer id;
23
24 public Point3d getPoint3d() {
25 return point3d;
26 }
27
28 public void setPoint3d(Point3d point3d) {
29 this.point3d = point3d;
30 }
31
32 public void setColor(Color color) {
33 this.color = color;
34 }
35
36 public void setPoint(Point point) {
37 this.point = point;
38 }
39
40 public void setId(Integer id) {
41 this.id = id;
42 }
43
44 public Color getColor() {
45 return color;
46 }
47
48 public Point getPoint() {
49 return point;
50 }
51
52 public Integer getId() {
53 return id;
54 }
55 }