Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 8030405361317871559ce54f331ca13d7c05b64f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                 
                                           

                                              





                                 
 
                                                                                            
        
                                                                                        

        
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.ui;

import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.IValue;
import org.eclipse.debug.core.model.IVariable;

/**
 * 
 * 
 * @since 3.0
 */
public interface IObjectBrowser {

	public IVariable[] getChildren(IDebugView view, IValue value) throws DebugException;
	
	public boolean hasChildren(IDebugView view, IValue value) throws DebugException;
	
}

Back to the top