From fa34bdd4ca42f25c3eeea03447e958721917ae8a Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Mon, 3 Dec 2012 07:09:26 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20=EC=BB=A4=EB=B0=8B=EC=95=88=EB=90=9C=EA=B2=8C=20=EC=9E=88?= =?UTF-8?q?=EC=96=B4=EC=84=9C=20commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@957 84d0f5b1-2673-498c-a247-62c4ff18d310 --- .../java/com/profiler/context/StackFrame.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/main/java/com/profiler/context/StackFrame.java diff --git a/src/main/java/com/profiler/context/StackFrame.java b/src/main/java/com/profiler/context/StackFrame.java new file mode 100644 index 000000000..f34a8e746 --- /dev/null +++ b/src/main/java/com/profiler/context/StackFrame.java @@ -0,0 +1,24 @@ +package com.profiler.context; + +/** + * + */ +public interface StackFrame { + int getStackFrameId(); + + void setStackFrameId(int stackId); + + void markBeforeTime(); + + long getBeforeTime(); + + void markAfterTime(); + + long getAfterTime(); + + void attachObject(Object object); + + Object getAttachObject(Object object); + + Object detachObject(); +}