deprecate access paths

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3093 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-11-24 20:56:04 +00:00
parent 25f887a15e
commit 031bb4d41e
6 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,7 @@ import com.ibm.wala.util.debug.Assertions;
* @author Eran Yahav (yahave)
* @author Stephen Fink
*/
@Deprecated
public abstract class FieldPathElement implements PathElement {
/**

View File

@ -20,6 +20,7 @@ import com.ibm.wala.util.debug.Assertions;
* @author Eran Yahav (yahave)
* @author Stephen Fink
*/
@Deprecated
public class InstanceFieldPathElement extends FieldPathElement {
/**

View File

@ -21,6 +21,7 @@ import com.ibm.wala.util.debug.Assertions;
* @author Eran Yahav (yahave)
* @author Stephen Fink
*/
@Deprecated
public class LocalPathElement implements PointerPathElement {
/**

View File

@ -20,6 +20,7 @@ package com.ibm.wala.accessPath;
* @author Eran Yahav (yahave)
* @author Stephen Fink
*/
@Deprecated
public interface PathElement {
/**

View File

@ -18,6 +18,7 @@ import com.ibm.wala.ipa.callgraph.propagation.PointerKey;
* @author sfink
*
*/
@Deprecated
public interface PointerPathElement extends PathElement {
public PointerKey getPointerKey();

View File

@ -19,6 +19,7 @@ import com.ibm.wala.ipa.callgraph.propagation.StaticFieldKey;
* @author Eran Yahav (yahave)
* @author Stephen Fink
*/
@Deprecated
public class StaticFieldPathElement extends FieldPathElement implements PointerPathElement {
private final StaticFieldKey sfk;