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.ArrayList;
15 import java.util.List;
17 import org.simantics.db.ReadGraph;
18 import org.simantics.db.Resource;
19 import org.simantics.db.common.request.UnaryRead;
20 import org.simantics.db.exception.DatabaseException;
21 import org.simantics.diagram.stubs.DiagramResource;
22 import org.simantics.scenegraph.profile.ProfileUtils;
24 public class DirectProfileEntries extends UnaryRead<ResourcePair, List<ResourcePair>> {
26 public DirectProfileEntries(ResourcePair resource) {
31 public List<ResourcePair> perform(ReadGraph graph) throws DatabaseException {
32 DiagramResource dr = DiagramResource.getInstance(graph);
33 ArrayList<ResourcePair> entries = new ArrayList<ResourcePair>();
34 Resource list = graph.getPossibleObject(parameter.getSecond(), dr.HasEntries);
35 if(list == null) return entries;
36 for(Resource entry : ProfileUtils.getProfileChildrenFromEntries(graph, list)) {
37 entries.add(new ResourcePair(parameter.getFirst(), entry));