01: package org.andromda.translation.ocl.validation;
02:
03: /**
04: * A simple object used with OCLCollectionsTest
05: *
06: * @author Chad Brandon
07: */
08: public class OCLCollectionsTestObject {
09: private String propertyOne;
10:
11: public String getPropertyOne() {
12: return propertyOne;
13: }
14:
15: public void setPropertyOne(String propertyOne) {
16: this .propertyOne = propertyOne;
17: }
18:
19: private Long propertyTwo;
20:
21: public Long getPropertyTwo() {
22: return propertyTwo;
23: }
24:
25: public void setPropertyTwo(Long propertyTwo) {
26: this.propertyTwo = propertyTwo;
27: }
28: }
|