org.eclipse.jface.viewers.TreeNodeContentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.jface Show documentation
Show all versions of org.eclipse.jface Show documentation
This is org.eclipse.jface jar used by Scout SDK
The newest version!
/*******************************************************************************
* Copyright (c) 2005, 2015 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.viewers;
/**
*
* A content provider that expects every element to be a TreeNode
.
* Most methods delegate to TreeNode
. dispose()
* and inputChanged(Viewer, Object, Object)
do nothing by
* default.
*
*
* This class and all of its methods may be overridden or extended.
*
*
* @since 3.2
* @see org.eclipse.jface.viewers.TreeNode
*/
public class TreeNodeContentProvider implements ITreeContentProvider {
@Override
public void dispose() {
// Do nothing
}
@Override
public Object[] getChildren(final Object parentElement) {
final TreeNode node = (TreeNode) parentElement;
return node.getChildren();
}
@Override
public Object[] getElements(final Object inputElement) {
if (inputElement instanceof TreeNode[]) {
return (TreeNode[]) inputElement;
}
return new Object[0];
}
@Override
public Object getParent(final Object element) {
final TreeNode node = (TreeNode) element;
return node.getParent();
}
@Override
public boolean hasChildren(final Object element) {
final TreeNode node = (TreeNode) element;
return node.hasChildren();
}
@Override
public void inputChanged(final Viewer viewer, final Object oldInput,
final Object newInput) {
// Do nothing
}
}