blob: 654439683b98d94b95f56e46291d48201caeb554 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Emil Simeonov - initial API and implementation.
* Dimitar Donchev - initial API and implementation.
* Dimitar Tenev - initial API and implementation.
* Nevena Manova - initial API and implementation.
* Georgi Konstantinov - initial API and implementation.
* Richard Birenheide - initial API and implementation.
*******************************************************************************/
package org.eclipse.wst.sse.sieditor.ui.v2.dt.nodes.impl;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.sse.sieditor.model.api.IModelObject;
import org.eclipse.wst.sse.sieditor.model.api.INamedObject;
import org.eclipse.wst.sse.sieditor.ui.Activator;
import org.eclipse.wst.sse.sieditor.ui.v2.dt.nodes.ISimpleTypeNode;
import org.eclipse.wst.sse.sieditor.ui.v2.nodes.ITreeNode;
import org.eclipse.wst.sse.sieditor.ui.v2.nodes.impl.AbstractTreeNode;
import org.eclipse.wst.sse.sieditor.ui.v2.utils.UIUtils;
public class SimpleTypeNode extends AbstractTreeNode implements ISimpleTypeNode {
public SimpleTypeNode(final IModelObject simpleType, final ITreeNode parent) {
super(simpleType, parent, null);
}
public String getDisplayName() {
return UIUtils.instance().getDisplayName((INamedObject)getModelObject());
}
@Override
public Image getImage() {
return isReadOnly() ? getImageRegistry().get(Activator.NODE_SIMPLE_TYPE_GRAY) :
getImageRegistry().get(Activator.NODE_SIMPLE_TYPE);
}
@Override
public Object[] getChildren() {
return null;
}
@Override
public boolean hasChildren() {
return false;
}
}