]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.team.ui/src/org/simantics/team/ui/handlers/GetOutgoingHandler.java
8fe8aae71adbde29fb0fc10a5e25622c4feba40a
[simantics/platform.git] / bundles / org.simantics.team.ui / src / org / simantics / team / ui / handlers / GetOutgoingHandler.java
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
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.team.ui.handlers;\r
13 \r
14 import org.eclipse.core.commands.ExecutionEvent;\r
15 import org.eclipse.core.commands.ExecutionException;\r
16 import org.eclipse.jface.viewers.ISelection;\r
17 import org.eclipse.jface.viewers.IStructuredSelection;\r
18 import org.eclipse.jface.viewers.StructuredSelection;\r
19 import org.eclipse.ui.handlers.HandlerUtil;\r
20 import org.simantics.db.Session;\r
21 import org.simantics.db.service.LifecycleSupport;\r
22 import org.simantics.db.service.TeamSupport;\r
23 import org.simantics.team.Activator;\r
24 import org.simantics.ui.SimanticsUI;\r
25 import org.simantics.ui.workbench.handler.AbstractPreferenceHandler;\r
26 \r
27 public class GetOutgoingHandler extends AbstractPreferenceHandler {\r
28 \r
29         public GetOutgoingHandler() {\r
30                 super(Activator.getDefault());\r
31         }\r
32 \r
33         @Override\r
34         public Object execute(ExecutionEvent event) throws ExecutionException {\r
35 \r
36                 ISelection sel = HandlerUtil.getCurrentSelection(event);\r
37                 IStructuredSelection ss = StructuredSelection.EMPTY;\r
38                 if (sel instanceof IStructuredSelection)\r
39                         ss = (IStructuredSelection) sel;\r
40                 \r
41         try {\r
42                 Session session = SimanticsUI.getSession();\r
43                 TeamSupport ps = session.getService(TeamSupport.class);\r
44                 LifecycleSupport support = session.getService(LifecycleSupport.class);\r
45                 System.out.println("koss");\r
46 //            support.save();\r
47 //              ps.publish();\r
48                 } /*catch (InternalException e) {\r
49                         e.printStackTrace();\r
50                 }  */finally {\r
51                 }\r
52 \r
53                 return null;\r
54                 \r
55         }\r
56 \r
57 }\r