Rename class to be protocol specific

This commit is contained in:
Dale Schultz 2015-01-25 09:26:09 -05:00
parent 56e5316d84
commit 24959385ee
2 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ import org.w3c.dom.Node;
import com.romraider.Settings;
import com.romraider.logger.ecu.EcuLogger;
import com.romraider.logger.ecu.comms.io.connection.LoggerConnection;
import com.romraider.logger.ecu.comms.learning.flkctable.FlkcTableQueryBuilder;
import com.romraider.logger.ecu.comms.learning.flkctable.SSMFlkcTableQueryBuilder;
import com.romraider.logger.ecu.comms.learning.parameter.SSMParameter;
import com.romraider.logger.ecu.comms.learning.parameter.SSMParameterCrossReference;
import com.romraider.logger.ecu.comms.learning.parameter.ParameterIdComparator;
@ -207,7 +207,7 @@ public final class SSMLearningTableValues extends SwingWorker<Void, Void>
List<List<EcuQuery>> flkcQueryGroups = new ArrayList<List<EcuQuery>>();
if (flkc != null) {
flkcQueryGroups = new FlkcTableQueryBuilder().build(
flkcQueryGroups = new SSMFlkcTableQueryBuilder().build(
flkc,
flkcAddr,
flkcRpm.length,

View File

@ -38,11 +38,11 @@ import com.romraider.util.HexUtil;
/**
* Build an EcuQuery for each of the cells in the FLKC RAM table.
*/
public class FlkcTableQueryBuilder {
public class SSMFlkcTableQueryBuilder {
private static final Logger LOGGER =
Logger.getLogger(FlkcTableQueryBuilder.class);
Logger.getLogger(SSMFlkcTableQueryBuilder.class);
public FlkcTableQueryBuilder() {
public SSMFlkcTableQueryBuilder() {
}
/**