/******************************************************************************* * Copyright (c) 2013, 2014 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.e4.ui.css.swt.dom.definition; import org.eclipse.e4.ui.css.core.dom.IElementProvider; import org.eclipse.e4.ui.css.core.engine.CSSEngine; import org.eclipse.e4.ui.internal.css.swt.definition.IColorDefinitionOverridable; import org.eclipse.e4.ui.internal.css.swt.definition.IFontDefinitionOverridable; import org.eclipse.e4.ui.internal.css.swt.definition.IThemesExtension; import org.w3c.dom.Element; public class ThemeElementDefinitionProvider implements IElementProvider { @Override public Element getElement(Object element, CSSEngine engine) { if (element instanceof IFontDefinitionOverridable) { return new FontDefinitionElement((IFontDefinitionOverridable) element, engine); } if (element instanceof IColorDefinitionOverridable) { return new ColorDefinitionElement((IColorDefinitionOverridable) element, engine); } if (element instanceof IThemesExtension) { return new ThemesExtensionElement((IThemesExtension) element, engine); } return null; } }