return new StaticYCoordinateValue(IntegerAttributeCompiler.convertToInt(value));
}
private YCoordinateValue attemptAlignedAttribute(String value)
{
VerticalAlignment alignment = VerticalAlignmentAttributeCompiler.parse(value);
if(alignment != null)
return new AlignedYCoordinateValue(alignment);
else
return null;
}