Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save porcelli/1888a6c758d45212aeb4 to your computer and use it in GitHub Desktop.
Save porcelli/1888a6c758d45212aeb4 to your computer and use it in GitHub Desktop.
package org.kie.uberfire.perspective.editor.model;
import java.util.Map;
import com.google.gwt.user.client.ui.Widget;
public interface ExternalPerspectiveEditorComponent {
void setup(final String placeName,
final Map<String, String> parameters);
String getPlaceName();
Map<String,String> getParametersMap();
IsWidget getConfig();
IsWidget getPreview(final Map<String, String> parameters);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment