blob: 722f79723f8dc371d3dae06ca4e9ed6d89194c32 [file] [log] [blame]
package org.apache.tapestry5;
/**
* Constants used when rendering a CSS class attribute.
*/
public class CSSClassConstants
{
/**
* CSS class name that causes a rendered element to be invisible on the client side.
*/
public static final String INVISIBLE = "t-invisible";
/**
* All purpose CSS class name for anything related to Tapestry errors.
*/
public static final String ERROR = "t-error";
}