blob: b1aa878bc2c1d51a6ac4f9011ae647d207599151 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2013 Angelo Zerr and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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";
}