mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-24 13:45:00 +00:00
- Created a new MANIFEST.MF file for the JAR with version 1.0. - Added gradle.properties to specify Java 21 as the JDK for Gradle builds, ensuring compatibility with current Gradle/Kotlin versions.
26 lines
816 B
Java
26 lines
816 B
Java
package com.efiAnalytics.ui;
|
|
|
|
import java.awt.Component;
|
|
import javax.swing.DefaultCellEditor;
|
|
import javax.swing.JTable;
|
|
|
|
class TableCenterCellEditor extends DefaultCellEditor {
|
|
TableCenterCellEditor(S paramS) {
|
|
super(new NumericTextField());
|
|
do do = (do)getComponent();
|
|
do.setHorizontalAlignment(0);
|
|
}
|
|
|
|
public Component getTableCellEditorComponent(JTable paramJTable, Object paramObject, boolean paramBoolean, int paramInt1, int paramInt2) {
|
|
do do = (do)getComponent();
|
|
do.setFont(this.a.getFont());
|
|
do.setText(paramJTable.getModel().getValueAt(paramInt1, paramInt2).toString());
|
|
return do;
|
|
}
|
|
}
|
|
|
|
|
|
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/com/efiAnalytics/ui/aa.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |