blob: af21f47d1d8f53eb9471e0351d9690af0c167570 [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 java.io.Serializable;
import org.w3c.dom.css.CSSImportRule;
import org.w3c.dom.css.CSSRule;
import org.w3c.dom.css.CSSStyleSheet;
import org.w3c.dom.stylesheets.MediaList;
public class CSSImportRuleImpl extends CSSRuleImpl implements CSSImportRule, Serializable {
public CSSImportRuleImpl(CSSStyleSheet parentStyleSheet, CSSRule parentRule,
String uri, MediaListImpl mediaListImpl) {
super(parentStyleSheet, parentRule);
// TODO Auto-generated constructor stub
}
/*
* (non-Javadoc)
* @see org.w3c.dom.css.CSSRule#getType()
*/
public short getType() {
return CSSRule.IMPORT_RULE;
}
// W3C CSSImportRule API methods
/*
* (non-Javadoc)
* @see org.w3c.dom.css.CSSImportRule#getHref()
*/
public String getHref() {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("NOT YET IMPLEMENTED");
}
/*
* (non-Javadoc)
* @see org.w3c.dom.css.CSSImportRule#getMedia()
*/
public MediaList getMedia() {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("NOT YET IMPLEMENTED");
}
/*
* (non-Javadoc)
* @see org.w3c.dom.css.CSSImportRule#getStyleSheet()
*/
public CSSStyleSheet getStyleSheet() {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("NOT YET IMPLEMENTED");
}
}