blob: 402575fc026548799e0f4423add2bac870532bb3 [file] [log] [blame]
package org.eclipse.stem.ui.adapters.loggerpropertyeditor;
/*******************************************************************************
* Copyright (c) 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.core.resources.IProject;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.impl.AdapterImpl;
import org.eclipse.stem.ui.wizards.LoggerPropertyComposite;
import org.eclipse.swt.events.ModifyListener;
abstract public class LoggerPropertyEditorAdapter extends AdapterImpl
implements Adapter {
abstract public LoggerPropertyEditor createLoggerPropertyEditor(
LoggerPropertyComposite diseaseModelPropertyComposite,
int style, ModifyListener projectValidator, IProject project);
}