|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| MeasureLog.java | - | - | - | - |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* Joey and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*/
|
|
| 5 |
package org.asyrinx.brownie.core.log;
|
|
| 6 |
|
|
| 7 |
/**
|
|
| 8 |
* 処理時間の計測を行うためのインタフェース。 計測の開始/終了に対応するメソッドだけを持ちます。
|
|
| 9 |
*
|
|
| 10 |
* @author Akima
|
|
| 11 |
*/
|
|
| 12 |
public interface MeasureLog { |
|
| 13 |
|
|
| 14 |
public void reset(); |
|
| 15 |
|
|
| 16 |
public void done(String message); |
|
| 17 |
|
|
| 18 |
} |
|
||||||||||