1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.debug.core; 12 13 14 /** 15 * An object referencing an instance of <code>java.lang.Class</code> on a 16 * target VM. 17 * <p> 18 * Clients are not intended to implement this interface. 19 * </p> 20 * @see IJavaValue 21 * @since 2.0 22 */ 23 24 public interface IJavaClassObject extends IJavaObject { 25 26 /** 27 * Returns the type associated with instances of this 28 * class. 29 * 30 * @return the type associated with instances of this 31 * class 32 */ 33 IJavaType getInstanceType(); 34 35 } 36 37