blob: 9df17e80f761edefd0bb6b3738ad385e1f08ed9f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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.pde.api.tools.internal.provisional;
/**
* Describes API usage restrictions and visibility of an element contained
* in an API component.
*
* @since 1.0.0
*/
public interface IApiAnnotations {
/**
* Returns the visibility modifiers annotation.
*
* @return a visibility constant defined by {@link VisibilityModifiers}
*/
public int getVisibility();
/**
* Returns the restriction modifiers annotation.
*
* @return restriction constant defined by {@link RestrictionModifiers}
*/
public int getRestrictions();
}