v++
время выполнения пакетов
This commit is contained in:
16
src/Common/Visual/Tables/RendererMilliseconds.java
Normal file
16
src/Common/Visual/Tables/RendererMilliseconds.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package Common.Visual.Tables;
|
||||
import Common.Utils.Utils_;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.util.Date;
|
||||
public class RendererMilliseconds extends RendererCell<Long>{
|
||||
@Override
|
||||
public Long Init(JTable table, Object value, int row, int column) {
|
||||
return (Long) value;
|
||||
}
|
||||
@Override
|
||||
public void Display() {
|
||||
if (value != null)
|
||||
setText(Utils_.printSplittedDateInterval(value));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user