blob: 1d44520fb9af20d6880ad2a168d424515799384b [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
* IBM Corporation
*******************************************************************************/
package org.eclipse.e4.ui.css.core.impl.dom;
import org.eclipse.e4.ui.css.core.dom.parsers.CSSParser;
/**
* Abstract CSS Node.
*/
public class AbstractCSSNode {
public AbstractCSSNode() {
super();
}
public CSSParser getCSSParser() {
//TODO not sure why this always returns null
return null;
}
}