1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
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.modeling.template2d.ui.actions;
14 import org.simantics.db.Resource;
15 import org.simantics.db.WriteGraph;
16 import org.simantics.db.common.request.WriteRequest;
17 import org.simantics.db.common.utils.ListUtils;
18 import org.simantics.db.exception.DatabaseException;
19 import org.simantics.db.layer0.adapter.ActionFactory;
20 import org.simantics.layer0.Layer0;
21 import org.simantics.scenegraph.ontology.ScenegraphResources;
22 import org.simantics.ui.SimanticsUI;
24 public class MoveUp implements ActionFactory {
27 public Runnable create(Object target) {
28 if(!(target instanceof Resource))
30 final Resource selection = (Resource)target;
32 return new Runnable() {
35 SimanticsUI.getSession().asyncRequest(new WriteRequest() {
37 public void perform(WriteGraph g) throws DatabaseException {
40 Layer0 L0 = Layer0.getInstance(g);
41 ScenegraphResources SG = ScenegraphResources.getInstance(g);
43 Resource parent = g.getPossibleObject(selection, L0.PartOf);
47 Resource list = g.getPossibleObject(parent, SG.Node_children);
51 ListUtils.swapWithPrevious(g, list, selection);