better interface name
This commit is contained in:
parent
e7a81ba805
commit
caa66f1d45
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.tools.tune;
|
||||
|
||||
public interface HoHo {
|
||||
public interface CannableEntity {
|
||||
String getCsourceMethod(String reference, String methodNamePrefix);
|
||||
|
||||
String getCinvokeMethod(String methodNamePrefix);
|
|
@ -9,9 +9,8 @@ import org.jetbrains.annotations.Nullable;
|
|||
import java.io.BufferedReader;
|
||||
import java.io.BufferedWriter;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class CurveData implements HoHo {
|
||||
public class CurveData implements CannableEntity {
|
||||
private final String curveName;
|
||||
private final float[] rawData;
|
||||
|
||||
|
|
|
@ -71,6 +71,7 @@ public class MetaHelper {
|
|||
}
|
||||
}
|
||||
|
||||
//
|
||||
static ConfigField findField(ReaderState state, String name, StringBuffer context) {
|
||||
ConfigField field = lookForFieldWithinSpecificStruct(state, name, context, "engine_configuration_s");
|
||||
if (field != null)
|
||||
|
|
|
@ -12,7 +12,7 @@ import java.io.Reader;
|
|||
import java.util.Arrays;
|
||||
import java.util.function.Function;
|
||||
|
||||
public class TableData implements HoHo {
|
||||
public class TableData implements CannableEntity {
|
||||
private final int rows;
|
||||
private final int columns;
|
||||
public final float[][] floats;
|
||||
|
|
Loading…
Reference in New Issue