X-Git-Url: http://jaekl.net/gitweb/?p=cfb.git;a=blobdiff_plain;f=prod%2Fnet%2Fjaekl%2Fcfb%2Fstore%2FLocation.java;h=8755fe6cc5945a7e18d298f6bb3f09bcad450de5;hp=1ffc7322522635999440f45ce8a10920884173f1;hb=8e5bdf0294e85b4419ee1e582d5677cccd3f736e;hpb=71a1166c90a757e1faec9756563d35dbc367665b diff --git a/prod/net/jaekl/cfb/store/Location.java b/prod/net/jaekl/cfb/store/Location.java index 1ffc732..8755fe6 100644 --- a/prod/net/jaekl/cfb/store/Location.java +++ b/prod/net/jaekl/cfb/store/Location.java @@ -5,6 +5,7 @@ import net.jaekl.cfb.xml.BugMethod; import net.jaekl.cfb.xml.SourceLine; public class Location { + Long m_id; String m_className; String m_methodName; String m_methodRole; @@ -38,6 +39,11 @@ public class Location { m_className = bugClass.getClassName(); } + public Location(Long id, String className, String methodName, String methodRole, long startLine, long endLine) + { + + } + public String getClassName() { return m_className; } public String getMethodName() { return m_methodName; } public String getMethodRole() { return m_methodRole; } @@ -51,13 +57,19 @@ public class Location { init(sourceLines[0]); } } + + private void init(SourceLine sourceLine) + { + init(sourceLine.getClassName(), sourceLine.getStart(), sourceLine.getEnd()); + } - private void init(SourceLine sourceLine) + private void init(String className, int startLine, int endLine) { - m_className = sourceLine.getClassName(); + m_id = null; + m_className = className; m_methodName = null; m_methodRole = null; - m_startLine = sourceLine.getStart(); - m_endLine = sourceLine.getEnd(); + m_startLine = startLine; + m_endLine = endLine; } }