<?php
/*
* This file is part of the YepSua package.
* (c) 2009-2011 Omar Yepez <hide@address.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* YsDirection todo description
*
* @package YepSua
* @subpackage CommonUtil
* @author Omar Yepez <hide@address.com>
* @version SVN: $Id$
*/
class YsDirection {
public static $VERTICAL = 'vertical';
public static $HORIZONTAL = 'horizontal';
public static $X = 'x';
public static $Y = 'y';
public static $XY = 'xy';
public static $YX = 'yx';
public static $TOP = 'top';
public static $RIGHT = 'right';
public static $BOTTOM = 'bottom';
public static $LEFT = 'left';
}