docs
This commit is contained in:
parent
1f69d0a185
commit
1cc522410c
|
@ -19,6 +19,10 @@ import static com.rusefi.output.DataLogConsumer.UNUSED;
|
||||||
import static com.rusefi.output.GetOutputValueConsumer.getHashConflicts;
|
import static com.rusefi.output.GetOutputValueConsumer.getHashConflicts;
|
||||||
import static com.rusefi.output.GetOutputValueConsumer.wrapSwitchStatement;
|
import static com.rusefi.output.GetOutputValueConsumer.wrapSwitchStatement;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Here we generate C++ code for https://github.com/rusefi/rusefi/wiki/Lua-Scripting#getcalibrationname
|
||||||
|
* @see GetOutputValueConsumer
|
||||||
|
*/
|
||||||
@SuppressWarnings("StringConcatenationInsideStringBufferAppend")
|
@SuppressWarnings("StringConcatenationInsideStringBufferAppend")
|
||||||
public class GetConfigValueConsumer implements ConfigurationConsumer {
|
public class GetConfigValueConsumer implements ConfigurationConsumer {
|
||||||
private static final String CONFIG_ENGINE_CONFIGURATION = "config->engineConfiguration.";
|
private static final String CONFIG_ENGINE_CONFIGURATION = "config->engineConfiguration.";
|
||||||
|
|
|
@ -17,6 +17,10 @@ import static com.rusefi.output.DataLogConsumer.UNUSED;
|
||||||
import static com.rusefi.output.GetConfigValueConsumer.FILE_HEADER;
|
import static com.rusefi.output.GetConfigValueConsumer.FILE_HEADER;
|
||||||
import static com.rusefi.output.GetConfigValueConsumer.getCompareName;
|
import static com.rusefi.output.GetConfigValueConsumer.getCompareName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* here we generate C++ code needed for https://github.com/rusefi/rusefi/wiki/Lua-Scripting#getoutputname implementation
|
||||||
|
* @see GetConfigValueConsumer
|
||||||
|
*/
|
||||||
@SuppressWarnings("StringConcatenationInsideStringBufferAppend")
|
@SuppressWarnings("StringConcatenationInsideStringBufferAppend")
|
||||||
public class GetOutputValueConsumer implements ConfigurationConsumer {
|
public class GetOutputValueConsumer implements ConfigurationConsumer {
|
||||||
private final List<Pair<String, String>> getterPairs = new ArrayList<>();
|
private final List<Pair<String, String>> getterPairs = new ArrayList<>();
|
||||||
|
|
Loading…
Reference in New Issue