blob: daa8759298cbf0c812d833a389813773ed9b9359 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License_Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.modules.platform.uibuilder;
import org.eclipse.swt.graphics.Point;
public interface IRenderer {
public IPlaceHolder createPlaceHolder(Point position);
public void setViewModel(ViewModel viewModel);
}