// // $Id: CssOperator.java,v 1.5 2012/04/03 14:20:54 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.values; /** * Used by properties to verify the semantics * * @version $Revision: 1.5 $ */ public interface CssOperator { public static final char COMMA = ','; public static final char MINUS = '-'; public static final char PLUS = '+'; public static final char SPACE = ' '; }