Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Hall2009-02-05 17:22:36 +0000
committerMatthew Hall2009-02-05 17:22:36 +0000
commitf67119dc497bfcc3d3f0d481c62edd25e1178547 (patch)
treeeb5b6d2c09485c63446f4c5c2ee3298a24d7cec8 /bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java
parent29295633ea7ae50e3432131ebe65d9b9ffea9d42 (diff)
downloadeclipse.platform.ui-f67119dc497bfcc3d3f0d481c62edd25e1178547.tar.gz
eclipse.platform.ui-f67119dc497bfcc3d3f0d481c62edd25e1178547.tar.xz
eclipse.platform.ui-f67119dc497bfcc3d3f0d481c62edd25e1178547.zip
FIXED - bug 263693: [DataBinding] Remove dead / deprecated APIs
https://bugs.eclipse.org/bugs/show_bug.cgi?id=263693
Diffstat (limited to 'bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java')
-rw-r--r--bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java b/bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java
deleted file mode 100644
index f3eadd65df9..00000000000
--- a/bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/tree/IHasChildrenUpdate.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2007 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.core.internal.databinding.observable.tree;
-
-/**
- * Context sensitive update request for whether elements have children.
- *
- * @since 3.3
- */
-public interface IHasChildrenUpdate extends IViewerUpdate {
-
- /**
- * The elements this request is for specified as tree paths. An empty path
- * identifies the root element.
- *
- * @return elements as tree paths
- */
- public TreePath[] getElements();
-
- /**
- * Sets whether the given element has children.
- *
- * @param element
- * tree path to element, or empty for root element
- * @param hasChildren
- * whether it has children
- */
- public void setHasChilren(TreePath element, boolean hasChildren);
-}

Back to the top