From: mkersten Date: Thu, 13 Jan 2005 03:14:50 +0000 (+0000) Subject: Updated to include source location offset. X-Git-Tag: Root_AspectJ5_Development~97 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e633c1f58e2a163e016c99f08a08386a6d003d36;p=aspectj.git Updated to include source location offset. --- diff --git a/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java b/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java index 11b9ff0d4..5ffeaa85f 100644 --- a/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java +++ b/docs/sandbox/api-clients/org/aspectj/samples/AsmRelationshipMapExtensionTest.java @@ -59,13 +59,16 @@ class DeclareInfoProvider extends AsmRelationshipProvider { for (Iterator it = newParents.iterator(); it.hasNext();) { ResolvedTypeX superType = (ResolvedTypeX) it.next(); - String sourceHandle = ProgramElement.createHandleIdentifier(decp.getSourceFile(),decp.getLine(),decp.getColumn()); + String sourceHandle = ProgramElement.createHandleIdentifier( + decp.getSourceFile(),decp.getLine(),decp.getColumn(), decp.getOffset()); IProgramElement ipe = AsmManager.getDefault().getHierarchy().findElementForHandle(sourceHandle); - + String superHandle = ProgramElement.createHandleIdentifier( superType.getSourceLocation().getSourceFile(), superType.getSourceLocation().getLine(), - superType.getSourceLocation().getColumn()); + superType.getSourceLocation().getColumn(), + superType.getSourceLocation().getOffset() + ); if (sourceHandle != null && superHandle != null) { IRelationship foreward = AsmManager.getDefault().getRelationshipMap().get(