1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
\r
3 * in Industry THTH ry.
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.modeling.ui.modelBrowser2.contributions;
\r
14 import java.util.Collection;
\r
16 import org.simantics.charts.ontology.ChartResource;
\r
17 import org.simantics.db.ReadGraph;
\r
18 import org.simantics.db.Resource;
\r
19 import org.simantics.db.common.request.ObjectsWithType;
\r
20 import org.simantics.db.exception.DatabaseException;
\r
21 import org.simantics.db.request.Read;
\r
22 import org.simantics.layer0.Layer0;
\r
23 import org.simantics.modeling.ui.modelBrowser2.model.ChartNode;
\r
24 import org.simantics.structural.ui.modelBrowser.contributions.LibraryViewpointContributor;
\r
27 * @author Tuukka Lehtonen
\r
29 public class ChartPlots extends LibraryViewpointContributor<ChartNode> {
\r
32 protected Read<Collection<Resource>> getChildRequest(ReadGraph graph, ChartNode chart) throws DatabaseException {
\r
33 return new ObjectsWithType(
\r
35 Layer0.getInstance(graph).ConsistsOf,
\r
36 ChartResource.getInstance(graph).Chart_Item);
\r