blob: 55676b9c89abd7a4255efa69640e13bc006acaf7 [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.akrogen.tkui.css.core.sac.parsers.flute;
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_FLUTE);
}
public static void main(String[] args) {
ParseStyleSheet p = new ParseStyleSheet();
p.parseStyleSheet();
}
}