- java.lang.Object
-
- util.io.Profiler
-
@Deprecated(since="3.0") public class Profiler extends java.lang.Object
Deprecated.since 3.0A little helper class that allows a simple profiling (time measuring).- Author:
- Til Schneider, www.murfman.de
-
-
Constructor Summary
Constructors Constructor Description Profiler()
Deprecated.Creates a new instance of Profiler.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Profiler
getDefault()
Deprecated.Gets the default profiler.void
show(java.lang.String text)
Deprecated.Shows the stopped time.
-
-
-
Method Detail
-
getDefault
public static Profiler getDefault()
Deprecated.Gets the default profiler.- Returns:
- the default profiler.
-
show
public void show(java.lang.String text)
Deprecated.Shows the stopped time. And starts a new time measure.The printing of the result is not measured, of corse.
- Parameters:
text
- A text that allows you to identify the location in the code.
-
-