aboutsummaryrefslogtreecommitdiffstats
path: root/docs/sandbox/api-clients
diff options
context:
space:
mode:
authormkersten <mkersten>2005-04-14 16:44:01 +0000
committermkersten <mkersten>2005-04-14 16:44:01 +0000
commitdf7fff4c8c073a3bbcfe749134d577299402d5fb (patch)
tree566a368b2d30af514d724197620fa6854b7b5ce0 /docs/sandbox/api-clients
parentbcef03bef88e3e43347ecfc57f0d6cb6694d7b1c (diff)
downloadaspectj-df7fff4c8c073a3bbcfe749134d577299402d5fb.tar.gz
aspectj-df7fff4c8c073a3bbcfe749134d577299402d5fb.zip
bug#82171 Created sepereate handle provider to enable ASM use of IDE-specific handle identifiers.
Diffstat (limited to 'docs/sandbox/api-clients')
-rw-r--r--docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java b/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java
index 5ffeaa85f..f11b5bc82 100644
--- a/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java
+++ b/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java
@@ -59,11 +59,11 @@ class DeclareInfoProvider extends AsmRelationshipProvider {
for (Iterator it = newParents.iterator(); it.hasNext();) {
ResolvedTypeX superType = (ResolvedTypeX) it.next();
- String sourceHandle = ProgramElement.createHandleIdentifier(
+ String sourceHandle = AsmManager.getDefault().getHandleProvider().createHandleIdentifier(
decp.getSourceFile(),decp.getLine(),decp.getColumn(), decp.getOffset());
IProgramElement ipe = AsmManager.getDefault().getHierarchy().findElementForHandle(sourceHandle);
- String superHandle = ProgramElement.createHandleIdentifier(
+ String superHandle = AsmManager.getDefault().getHandleProvider().createHandleIdentifier(
superType.getSourceLocation().getSourceFile(),
superType.getSourceLocation().getLine(),
superType.getSourceLocation().getColumn(),