]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.event/src/org/simantics/event/view/handler/CreateMilestoneLabelsQuery.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.event / src / org / simantics / event / view / handler / CreateMilestoneLabelsQuery.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
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
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.event.view.handler;
13
14 import java.util.Map;
15
16 import org.simantics.db.ReadGraph;
17 import org.simantics.db.Resource;
18 import org.simantics.db.common.request.UnaryRead;
19 import org.simantics.db.exception.DatabaseException;
20
21 /**
22  * This query creates a list of milestone labels. 
23  * The result is a map, a mapping from milestone-event to label string.  
24  * 
25  * @author toni.kalajainen
26  */
27 public class CreateMilestoneLabelsQuery extends UnaryRead<Resource, Map<Resource, String>> {
28
29         public CreateMilestoneLabelsQuery(Resource eventlog) {
30                 super(eventlog);
31         }
32
33         @Override
34         public Map<Resource, String> perform(ReadGraph graph) throws DatabaseException {
35                 
36                 return null;
37         }
38         
39
40 }