]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.annotation.ui/src/org/simantics/annotation/ui/actions/NewAnnotationType.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.annotation.ui / src / org / simantics / annotation / ui / actions / NewAnnotationType.java
1 /*******************************************************************************
2  * Copyright (c) 2012 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.annotation.ui.actions;
13
14 import org.simantics.Simantics;
15 import org.simantics.annotation.ui.AnnotationUtils;
16 import org.simantics.db.Resource;
17 import org.simantics.db.WriteGraph;
18 import org.simantics.db.common.request.WriteRequest;
19 import org.simantics.db.exception.DatabaseException;
20 import org.simantics.db.layer0.adapter.ActionFactory;
21
22 public class NewAnnotationType implements ActionFactory {
23
24     @Override
25     public Runnable create(Object target) {
26         if(!(target instanceof Resource))
27             return null;
28         final Resource parent = (Resource)target;
29
30         return new Runnable() {
31             @Override
32             public void run() {
33                 Simantics.getSession().asyncRequest(new WriteRequest() {
34                     @Override
35                     public void perform(WriteGraph g) throws DatabaseException {
36                         g.markUndoPoint();
37                         AnnotationUtils.newAnnotationType(g, parent);
38                     }
39                 });
40             }
41         };
42     }
43
44 }