package org.simantics.diagram.profile.view; import java.util.Collections; import java.util.Set; import org.eclipse.ui.IWorkbenchPartSite; import org.simantics.selectionview.SelectionProcessor; import org.simantics.selectionview.StandardPropertyPage; /** * @author Antti Villberg */ public class PropertyPage extends StandardPropertyPage { private static final Set CONTEXTS = Collections.singleton("http://www.simantics.org/Diagram-0.0/ProfilesView/SelectionView"); public PropertyPage(IWorkbenchPartSite site) { super(site, CONTEXTS); } @Override protected SelectionProcessor getSelectionProcessor() { return new ProfileSelectionProcessor(); } }