blob: a675740f45c05d16b78f1c5f9eaad0e879445997 [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/
*
* 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);
}