package org.andromda.translation.ocl.validation;
/**
* A simple object used with OCLCollectionsTest
*
* @author Chad Brandon
*/
public class OCLCollectionsTestObject
{
private String propertyOne;
public String getPropertyOne()
{
return propertyOne;
}
public void setPropertyOne(String propertyOne)
{
this.propertyOne = propertyOne;
}
private Long propertyTwo;
public Long getPropertyTwo()
{
return propertyTwo;
}
public void setPropertyTwo(Long propertyTwo)
{
this.propertyTwo = propertyTwo;
}
}
|