1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.diagram.profile.view;
14 import java.util.Collection;
16 import org.simantics.browsing.ui.CheckedState;
17 import org.simantics.browsing.ui.model.check.CheckedStateRule;
18 import org.simantics.db.ReadGraph;
19 import org.simantics.db.Resource;
20 import org.simantics.db.exception.DatabaseException;
21 import org.simantics.diagram.stubs.DiagramResource;
22 import org.simantics.scenegraph.profile.request.ProfileActiveEntryResources;
23 import org.simantics.scenegraph.profile.request.ProfileEntryResources;
24 import org.simantics.simulation.ontology.SimulationResource;
26 public class ProfileCheckContributor implements CheckedStateRule {
29 public boolean isCompatible(Class<?> contentType) {
30 return contentType.equals(ResourcePair.class);
34 public CheckedState getCheckedState(ReadGraph graph, Object parent)
35 throws DatabaseException {
37 ResourcePair entry = (ResourcePair)parent;
38 Resource activeProfile = entry.getFirst();
39 DiagramResource DIA = DiagramResource.getInstance(graph);
40 SimulationResource SIMU = SimulationResource.getInstance(graph);
42 if(graph.isInstanceOf(entry.getSecond(), DIA.Profile)) {
43 Resource list = graph.getPossibleObject(entry.getSecond(), DIA.HasEntries);
44 Collection<Resource> activeEntries = graph.syncRequest( new ProfileActiveEntryResources(activeProfile, list) );
45 if (activeEntries.isEmpty()) {
46 return CheckedState.NOT_CHECKED;
48 Collection<Resource> entries = graph.syncRequest( new ProfileEntryResources(activeProfile, list) );
49 return entries.equals(activeEntries) ? CheckedState.CHECKED : CheckedState.GRAYED;
52 } else if(graph.isInstanceOf(entry.getSecond(), DIA.ProfileEntry)) {
53 if(graph.hasStatement(activeProfile, SIMU.IsActive, entry.getSecond())) return CheckedState.CHECKED;
56 return CheckedState.NOT_CHECKED;