blob: 86cf90a1b0c1744cf8a0e33c75a98bb81e8e6882 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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 com.sun.jdi;
public interface Accessible {
public boolean isPackagePrivate();
public boolean isPrivate();
public boolean isProtected();
public boolean isPublic();
public int modifiers();
}