Package org.eclipse.e4.ui.css.core.sac
Interface ISACParserFactory
- All Known Implementing Classes:
SACParserFactory
,SACParserFactoryImpl
public interface ISACParserFactory
SAC parser factory interface to get instance of SAC
Parser
.-
Method Summary
Modifier and TypeMethodDescriptionorg.w3c.css.sac.Parser
Return default instance of SAC Parser.org.w3c.css.sac.Parser
makeParser
(String name) Return instance of SAC Parser registered into the factory with namename
.
-
Method Details
-
makeParser
org.w3c.css.sac.Parser makeParser() throws ClassNotFoundException, IllegalAccessException, InstantiationException, NullPointerException, ClassCastExceptionReturn 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. -
makeParser
org.w3c.css.sac.Parser makeParser(String name) throws ClassNotFoundException, IllegalAccessException, InstantiationException, NullPointerException, ClassCastException Return instance of SAC Parser registered into the factory with namename
.
-