blob: 7a5e4992d1ba350b7e42c5c02f0df8294ae19379 [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.eclipse.e4.ui.css.core.impl.dom;
import org.eclipse.e4.ui.css.core.dom.CSSExtendedProperties;
import org.eclipse.e4.ui.css.core.engine.CSSEngine;
/**
* {@link CSSExtendedProperties} implementation.
*/
public class CSSExtendedPropertiesImpl extends CSS2PropertiesImpl implements
CSSExtendedProperties {
public CSSExtendedPropertiesImpl(Object widget, CSSEngine engine) {
super(widget, engine);
}
}