blob: 6da5e33a585997b8645174b65c616cc66e15360e [file] [log] [blame]
package org.eclipse.stem.solvers.rk.presentation;
/*******************************************************************************
* Copyright (c) 2007, 2008 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
*******************************************************************************/
import org.eclipse.stem.core.solver.Solver;
import org.eclipse.stem.core.solver.SolverPropertyComposite;
import org.eclipse.stem.core.solver.SolverPropertyEditor;
import org.eclipse.stem.core.solver.SolverPropertyEditorAdapter;
import org.eclipse.swt.events.ModifyListener;
/**
*
* Adapter for Property Editor
*
*/
public class RkSolverAdapter extends
SolverPropertyEditorAdapter {
/**
*
*/
@Override
public SolverPropertyEditor createSolverPropertyEditor(
SolverPropertyComposite solverPropertyComposite,
int style, ModifyListener projectValidator) {
return new RkSolverPropertyEditor(
solverPropertyComposite, style,
(Solver) getTarget(), projectValidator);
} // createSolverPropertyEditor
} // RkSolverAdapter