blob: 5e29b1ad7ddc8b7980975c228d0953e44214873a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Angelo Zerr and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.ui.css.core;
/**
* SAC Constants Parsers.
*
* @version 1.0.0
* @author <a href="mailto:angelo.zerr@gmail.com">Angelo ZERR</a>
*
*/
public class SACConstants {
/**
* org.w3c.flute.parser.Parser SAC Parser.
*/
public static final String SACPARSER_FLUTE = "org.w3c.flute.parser.Parser";
/**
* org.w3c.flute.parser.Parser SAC Parser.
*/
public static final String SACPARSER_FLUTE_CSS3 = "org.w3c.flute.parser.CSS3Parser";
/**
* com.steadystate.css.parser.SACParser SAC Parser
*/
public static final String SACPARSER_STEADYSTATE = "com.steadystate.css.parser.SACParser";
/**
* org.apache.batik.css.parser.Parser SAC Parser.
*/
public static final String SACPARSER_BATIK = "org.apache.batik.css.parser.Parser";
}