blob: 1ce8ac25855793dc344aea9e0ed3b033b4401e9e [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST.
*
* 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:
* Dirk Fauth <dirk.fauth@googlemail.com> - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.nebula.widgets.nattable.extension.e4;
import org.eclipse.e4.ui.css.core.dom.IElementProvider;
import org.eclipse.e4.ui.css.core.engine.CSSEngine;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.w3c.dom.Element;
@SuppressWarnings("restriction")
public class NatTableElementProvider implements IElementProvider {
@Override
public Element getElement(Object element, CSSEngine engine) {
if (element instanceof NatTable
|| element instanceof NatTableWrapper) {
NatTable natTable = (NatTable) element;
return new NatTableElementAdapter(natTable, engine);
}
return null;
}
}