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.browsing.ui.common.viewpoints;
14 import java.util.Collection;
16 import org.simantics.browsing.ui.BuiltinKeys;
17 import org.simantics.browsing.ui.NodeContext;
18 import org.simantics.browsing.ui.PrimitiveQueryUpdater;
19 import org.simantics.browsing.ui.common.NodeContextBuilder;
20 import org.simantics.browsing.ui.common.NodeContextUtil;
21 import org.simantics.browsing.ui.content.Viewpoint;
24 * @author Tuukka Lehtonen
26 public abstract class ViewpointStub implements Viewpoint {
28 protected NodeContext[] children = Viewpoint.PENDING_CHILDREN;
29 protected Boolean hasChildren = Viewpoint.PENDING_HAS_CHILDREN;
31 final public void setChildren(PrimitiveQueryUpdater updater, NodeContext[] children) {
33 throw new NullPointerException(this + ": null children produced by " + getClass().getName());
34 for(NodeContext c : children) updater.incRef(c);
35 for(NodeContext c : this.children) updater.decRef(c);
36 this.children = children;
39 public void setHasChildren(Boolean hasChildren) {
41 throw new NullPointerException(this + ": null hasChildren produced by " + getClass().getName());
42 this.hasChildren = hasChildren;
46 * A utility method for transforming an array of objects into an
47 * INodeContext array which is the return value of a ViewpointFactory.
50 * The INodeContext's are constructed using
51 * {@link NodeContextBuilder#buildWithInput(Object)}.
55 * @return the specified children wrapped into simple <code>INodeContext</code>s
57 public NodeContext[] toContextsWithInput(Object... children) {
58 return NodeContextUtil.toContextsWithInput(children);
62 * A utility method for transforming a collection of objects into an
63 * INodeContext array which is the return value of a ViewpointFactory.
66 * The INodeContext's are constructed using
67 * {@link NodeContextBuilder#buildWithInput(Object)}.
71 * @return the specified children wrapped into simple <code>INodeContext</code>s
73 public NodeContext[] toContextsWithInput(Collection<?> children) {
74 return NodeContextUtil.toContextsWithInput(children);
78 * A utility method for transforming a collection of objects into an
79 * INodeContext array which is the return value of a ViewpointFactory.
82 * The INodeContext's are constructed using the specified factory.
86 * @return the specified children wrapped into INodeContext's through the
87 * specified <code>factory</code>
89 public NodeContext[] toContexts(Collection<?> children, NodeContextUtil.NodeContextFactory factory) {
90 return NodeContextUtil.toContexts(children, factory);
96 * @return input of the specified class
97 * @throws ClassCastException if the input class does not match the
99 * @throws NullPointerException if the input is null
101 @SuppressWarnings("unchecked")
102 protected <T> T getInput(NodeContext context) {
103 Object o = context.getConstant(BuiltinKeys.INPUT);
105 throw new NullPointerException("null input");
112 * @return <code>null</code> if input is <code>null</code> or if the class
115 @SuppressWarnings("unchecked")
116 protected <T> T tryGetInput(NodeContext context, Class<T> clazz) {
117 Object o = context.getConstant(BuiltinKeys.INPUT);
118 if (o != null && clazz.isInstance(o))