All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.invation.code.toval.misc.soabase.SOABaseEditingInterface Maven / Gradle / Ivy

package de.invation.code.toval.misc.soabase;

import java.awt.Window;

public interface SOABaseEditingInterface {
	
    /**
     * Opens a dialog whic hcan be used to edit the SOA-base.
     * @param 
     * @param parent
     * @return true when dialog was closed with accept; false if aborted.
     * @throws Exception 
     */
	public  boolean showDialog(Window parent) throws Exception;

}