<div dir="ltr">Have I mentioned that I am newbie :-). There is nothing wrong with soot, the&nbsp;LineNumberTag is associated with a unit and&nbsp;SourceFileTag is associated with a class. In case, anyone else runs into this problem, you can retrieve these pieces of info along the following lines:<div><br></div><div><div>Edge e = ...</div><div>Unit u = e.srcUnit();</div><div><div>SourceFileTag file = (SourceFileTag) e.getSrc().method().getDeclaringClass().getTag("SourceFileTag");</div><div>LineNumberTag line = (LineNumberTag) u.getTag("LineNumberTag");</div><div><br></div><div>-- Octav</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span></div></div><br>On Tuesday, April 14, 2015 at 6:17:20 PM UTC-5, Octav Chipara wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir="ltr">Hi,<div><br></div><div>I am trying to retrieve the SourceLnNamePosTag for some units in a callgraph. Unfortunately, the units are not tagged with SourceLnNamePosTag. Is there a way to configure soot to tag instructions with SourceLnNamePosTag?</div><div><br></div><div>Thanks,</div><div>-- Octav</div></div></blockquote></div></div>