1 package org.simantics.diagram.profile.view;
3 import java.util.Collections;
6 import org.eclipse.ui.IWorkbenchPartSite;
7 import org.simantics.selectionview.SelectionProcessor;
8 import org.simantics.selectionview.StandardPropertyPage;
11 * @author Antti Villberg
13 public class PropertyPage extends StandardPropertyPage {
15 private static final Set<String> CONTEXTS = Collections.singleton("http://www.simantics.org/Diagram-0.0/ProfilesView/SelectionView");
17 public PropertyPage(IWorkbenchPartSite site) {
18 super(site, CONTEXTS);
22 protected SelectionProcessor<?, ?> getSelectionProcessor() {
23 return new ProfileSelectionProcessor();