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

org.appdapter.gui.api.BrowserPanelGUI Maven / Gradle / Ivy

Go to download

Appdapter Maven project including Java and Scala, produces jar, not bundle. Excludes concrete SLF4J binding.

The newest version!
package org.appdapter.gui.api;

import java.beans.PropertyVetoException;
import java.util.Iterator;

import org.appdapter.gui.util.Annotations.UIProvider;

public interface BrowserPanelGUI extends DisplayContext, IShowObjectMessageAndErrors, UIProvider {
	
	void renameObject(String oldName, String newName) throws PropertyVetoException;

	Object findObjectByName(String title);

	Iterator getObjects();

}