/******************************************************************************* * 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.akrogen.tkui.css.core.sac.parsers.batik; import org.akrogen.tkui.css.core.SACConstants; import org.akrogen.tkui.css.core.sac.parsers.AbstractParseStyleSheet; public class ParseStyleSheet extends AbstractParseStyleSheet { public ParseStyleSheet() { super(SACConstants.SACPARSER_BATIK); } public static void main(String[] args) { ParseStyleSheet p = new ParseStyleSheet(); p.parseStyleSheet(); } }