1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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.ui.modelBrowser.model;
14 import java.util.Collection;
16 import org.eclipse.core.runtime.IAdaptable;
17 import org.eclipse.jface.resource.ImageDescriptor;
18 import org.simantics.browsing.ui.NodeContext;
19 import org.simantics.browsing.ui.common.node.DeleteException;
20 import org.simantics.browsing.ui.common.node.IDeletable;
21 import org.simantics.browsing.ui.common.node.IModifiable;
22 import org.simantics.browsing.ui.common.node.IRefreshable;
23 import org.simantics.browsing.ui.content.Labeler.Modifier;
26 * INode2 represents a node in the background system object model.
33 * @deprecated <a href="https://www.simantics.org/wiki/index.php/Org.simantics.browsing.ui_Manual">tutorial for new features</a>
36 public interface INode2 extends IAdaptable {
37 String getLabel(Runnable updater, NodeContext context);
38 int getCategory(Runnable updater, NodeContext context);
39 Collection<?> getChildren(Runnable updater, NodeContext context);
40 boolean hasChildren(Runnable updater, NodeContext context);
41 ImageDescriptor getImage(Runnable updater, NodeContext context);
42 Modifier getModifier(String columnId);
45 * Delete node in the background system. The node is considered deletable
46 * only if it implements {@link IDeletable}.
48 * @throws DeleteException if node could not be deleted
50 void handleDelete() throws DeleteException;