blob: c55bee0473a4b2d103250a83b6c593bc6e562320 [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;
import org.w3c.css.sac.Parser;
/**
* SAC parser factory interface to get instance of SAC {@link Parser}.
*/
public interface ISACParserFactory {
/**
* Return default instance of SAC Parser. If preferredParserName is filled,
* it return the instance of SAC Parser registered with this name, otherwise
* this method search teh SAC Parser class name to instanciate into System
* property with key org.w3c.css.sac.parser.
*/
public Parser makeParser() throws ClassNotFoundException,
IllegalAccessException, InstantiationException,
NullPointerException, ClassCastException;
/**
* Return instance of SAC Parser registered into the factory with name
* <code>name</code>.
*
* @param name
* @return
* @throws ClassNotFoundException
* @throws IllegalAccessException
* @throws InstantiationException
* @throws NullPointerException
* @throws ClassCastException
*/
public abstract Parser makeParser(String name)
throws ClassNotFoundException, IllegalAccessException,
InstantiationException, NullPointerException, ClassCastException;;
}