initial check-in of Internal annotation

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@563 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-01-12 14:49:25 +00:00
parent 5b97b9b888
commit 9dfd8bc302
2 changed files with 29 additions and 1 deletions

View File

@ -6,7 +6,8 @@ Bundle-Version: 1.0.0
Bundle-Vendor: WALA
Bundle-Localization: plugin
Eclipse-LazyStart: true
Export-Package: com.ibm.wala.shrike.bench,
Export-Package: com.ibm.wala.annotations,
com.ibm.wala.shrike.bench,
com.ibm.wala.shrike.copywriter,
com.ibm.wala.shrike.tools,
com.ibm.wala.shrikeBT,

View File

@ -0,0 +1,27 @@
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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.ibm.wala.annotations;
/**
* An annotation which indicates a method which although
* public, should be considered an "internal" method, not exposed
* to the outside world or an adversary.
*
* This annotation is placed in the shrike project just so it's
* at the top of the WALA project dependency hierarchy. It doesn't have
* anything to do with shrike.
*
* @author sjfink
*
*/
public @interface Internal {
}