Changeset 234


Ignore:
Timestamp:
10/17/2009 11:16:26 AM (4 years ago)
Author:
kascade
Message:

added zeitronix support; updated aem uego support

Location:
trunk
Files:
17 added
312 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/romraider/ECUExec.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222import static com.romraider.Version.PRODUCT_NAME; 
     23import com.romraider.editor.ecu.ECUEditor; 
    2324import static com.romraider.editor.ecu.ECUEditorManager.getECUEditor; 
    2425import static com.romraider.logger.ecu.EcuLogger.startLogger; 
     
    2829import static com.romraider.util.RomServer.sendRomToOpenInstance; 
    2930import static com.romraider.util.RomServer.waitForRom; 
    30 import com.romraider.editor.ecu.ECUEditor; 
    3131import com.romraider.util.SettingsManager; 
    3232import com.romraider.util.SettingsManagerImpl; 
     
    6060        if (isRunning()) { 
    6161            if (args.length == 0 || containsLoggerArg(args)) { 
    62                 showAlreadyRunningMessage(); 
     62                showAlreadyRunningMessage(); 
    6363            } else { 
    64                 sendRomToOpenInstance(args[0]); 
     64                sendRomToOpenInstance(args[0]); 
    6565            } 
    6666        } else { 
    6767            // open editor or logger 
    6868            if (containsLoggerArg(args)) { 
    69                 openLogger(args); 
     69                openLogger(args); 
    7070            } else { 
    71                 openEditor(args); 
     71                openEditor(args); 
    7272            } 
    7373        } 
     
    8181        for (String arg : args) { 
    8282            if (arg.equals(START_LOGGER_ARG)) { 
    83                 return true; 
     83                return true; 
    8484            } 
    8585        } 
     
    109109        ECUEditor editor = getECUEditor(); 
    110110        if (args.length > 0) { 
    111                 openRom(editor, args[0]); 
     111            openRom(editor, args[0]); 
    112112        } 
    113113        startRomListener(editor); 
  • trunk/src/com/romraider/Settings.java

    r213 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/editor/ecu/ECUEditor.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222import com.centerkey.utils.BareBonesBrowserLaunch; 
     23import com.romraider.Settings; 
    2324import static com.romraider.Version.ECU_DEFS_URL; 
    2425import static com.romraider.Version.PRODUCT_NAME; 
    2526import static com.romraider.Version.VERSION; 
    26 import com.romraider.Settings; 
    2727import com.romraider.logger.ecu.ui.handler.table.TableUpdateHandler; 
    2828import com.romraider.maps.Rom; 
     
    7777 
    7878public class ECUEditor extends AbstractFrame { 
    79         private static final long serialVersionUID = -7826850987392016292L; 
    80  
    81         private String titleText = PRODUCT_NAME + " v" + VERSION + " | ECU Editor"; 
     79    private static final long serialVersionUID = -7826850987392016292L; 
     80 
     81    private String titleText = PRODUCT_NAME + " v" + VERSION + " | ECU Editor"; 
    8282 
    8383    private static final String NEW_LINE = System.getProperty("line.separator"); 
     
    135135        setTitle(titleText); 
    136136        setVisible(true); 
    137          
     137 
    138138        if (settings.getEcuDefinitionFiles().size() <= 0) { 
    139139            // no ECU definitions configured - let user choose to get latest or configure later 
  • trunk/src/com/romraider/editor/ecu/ECUEditorManager.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/connection/ConnectionManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/connection/ConnectionManagerFactory.java

    r221 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/connection/ConnectionProperties.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/connection/ConnectionPropertiesImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/api/ConfigItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/api/J2534.java

    r215 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/api/J2534ConnectionManager.java

    r218 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/api/J2534Exception.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222public final class J2534Exception extends RuntimeException { 
    23         private static final long serialVersionUID = 7824233877963155502L; 
     23    private static final long serialVersionUID = 7824233877963155502L; 
    2424 
    25         public J2534Exception(String msg) { 
     25    public J2534Exception(String msg) { 
    2626        super(msg); 
    2727    } 
  • trunk/src/com/romraider/io/j2534/api/TestJ2534.java

    r220 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/api/Version.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/J2534DllLocator.java

    r215 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/J2534OpenPort20.java

    r219 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/Old_J2534OpenPort20.java

    r219 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/OpenPort20.java

    r215 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/PassThruMessage.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/SByteArray.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/SConfig.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/j2534/op20/SConfigList.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/protocol/Protocol.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/protocol/ProtocolFactory.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/protocol/ssm/SSMChecksumCalculator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/protocol/ssm/SSMProtocol.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/protocol/ssm/SSMResponseProcessor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/serial/connection/SerialConnection.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3232 
    3333    void close(); 
     34 
     35    String readLine(); 
    3436} 
  • trunk/src/com/romraider/io/serial/connection/SerialConnectionImpl.java

    r207 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3838import org.apache.log4j.Logger; 
    3939import static org.apache.log4j.Logger.getLogger; 
     40import java.io.BufferedInputStream; 
     41import java.io.BufferedOutputStream; 
     42import java.io.BufferedReader; 
    4043import java.io.IOException; 
    4144import java.io.InputStream; 
     45import java.io.InputStreamReader; 
    4246import java.io.OutputStream; 
    4347 
     
    4549    private static final Logger LOGGER = getLogger(SerialConnectionImpl.class); 
    4650    private final SerialPort serialPort; 
    47     private final OutputStream os; 
    48     private final InputStream is; 
     51    private final BufferedOutputStream os; 
     52    private final BufferedInputStream is; 
     53    private final BufferedReader reader; 
    4954 
    5055    public SerialConnectionImpl(String portName, ConnectionProperties connectionProperties) { 
     
    5257        checkNotNull(connectionProperties, "connectionProperties"); 
    5358        serialPort = connect(portName, connectionProperties); 
    54         os = initOutputStream(); 
    55         is = initInputStream(); 
     59        os = initOutputStream(serialPort); 
     60        is = initInputStream(serialPort); 
     61        reader = reader(is); 
     62    } 
     63 
     64    private BufferedReader reader(BufferedInputStream is) { 
     65        return new BufferedReader(new InputStreamReader(this.is)); 
    5666    } 
    5767 
     
    8898        read(response); 
    8999        return response; 
     100    } 
     101 
     102    public String readLine() { 
     103        try { 
     104            return reader.readLine(); 
     105        } catch (IOException e) { 
     106            close(); 
     107            throw new SerialCommunicationException(e); 
     108        } 
    90109    } 
    91110 
     
    105124            } 
    106125        } 
     126        if (reader != null) { 
     127            try { 
     128                reader.close(); 
     129            } catch (IOException e) { 
     130                LOGGER.error("Error closing input stream reader", e); 
     131            } 
     132        } 
    107133        if (is != null) { 
    108134            try { 
     
    122148    } 
    123149 
    124     private OutputStream initOutputStream() { 
    125         try { 
    126             return serialPort.getOutputStream(); 
     150    private BufferedOutputStream initOutputStream(SerialPort serialPort) { 
     151        try { 
     152            OutputStream os = serialPort.getOutputStream(); 
     153            return new BufferedOutputStream(os); 
    127154        } catch (IOException e) { 
    128155            close(); 
     
    131158    } 
    132159 
    133     private InputStream initInputStream() { 
    134         try { 
    135             return serialPort.getInputStream(); 
     160    private BufferedInputStream initInputStream(SerialPort serialPort) { 
     161        try { 
     162            InputStream is = serialPort.getInputStream(); 
     163            return new BufferedInputStream(is); 
    136164        } catch (IOException e) { 
    137165            close(); 
     
    182210        } 
    183211    } 
    184  
    185212} 
  • trunk/src/com/romraider/io/serial/connection/SerialConnectionManager.java

    r228 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/serial/connection/TestSerialConnection.java

    r207 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    150150    } 
    151151 
     152    public String readLine() { 
     153        throw new UnsupportedOperationException(); 
     154    } 
     155 
    152156    private int calculateNumResponseDataBytes() { 
    153157        return ((request.length - REQUEST_NON_DATA_BYTES) / ADDRESS_SIZE) * DATA_SIZE; 
  • trunk/src/com/romraider/io/serial/port/SerialPortDiscoverer.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/serial/port/SerialPortDiscovererImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/serial/port/SerialPortRefreshListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/io/serial/port/SerialPortRefresher.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/io/AemConnection.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/io/AemConnectionImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2424import com.romraider.io.serial.connection.SerialConnectionImpl; 
    2525import com.romraider.logger.ecu.exception.SerialCommunicationException; 
    26 import static com.romraider.util.HexUtil.asHex; 
    2726import static com.romraider.util.ParamChecker.checkNotNull; 
    2827import static com.romraider.util.ParamChecker.checkNotNullOrEmpty; 
    29 import static com.romraider.util.ThreadUtil.sleep; 
    3028import org.apache.log4j.Logger; 
    3129import static org.apache.log4j.Logger.getLogger; 
    32 import static java.lang.System.currentTimeMillis; 
    33 import java.util.ArrayList; 
    34 import java.util.List; 
     30import java.nio.charset.Charset; 
    3531 
    3632public final class AemConnectionImpl implements AemConnection { 
    3733    private static final Logger LOGGER = getLogger(AemConnectionImpl.class); 
     34    private static final Charset CHARSET_UTF8 = Charset.forName("UTF-8"); 
    3835    private final SerialConnection connection; 
    39     private final long sendTimeout; 
    4036 
    4137    public AemConnectionImpl(String portName, ConnectionProperties connectionProperties) { 
    4238        checkNotNull(connectionProperties, "connectionProperties"); 
    4339        checkNotNullOrEmpty(portName, "portName"); 
    44         this.sendTimeout = connectionProperties.getSendTimeout(); 
    4540        connection = new SerialConnectionImpl(portName, connectionProperties); 
    4641    } 
    4742 
    48     //TODO: This a guess!!...untested!! 
    4943    public byte[] read() { 
    5044        try { 
    51             connection.readStaleData(); 
    52             long start = currentTimeMillis(); 
    53             while (currentTimeMillis() - start <= sendTimeout) { 
    54                 if (connection.available() > 10) { 
    55                     byte[] bytes = connection.readAvailable(); 
    56                     LOGGER.trace("AEM UEGO input: " + asHex(bytes)); 
    57                     int startIndex = findStart(bytes); 
    58                     LOGGER.trace("AEM UEGO start index: " + startIndex); 
    59                     if (startIndex < 0 || startIndex >= bytes.length) continue; 
    60                     List<Byte> buffer = new ArrayList<Byte>(); 
    61                     for (int i = startIndex; i < bytes.length; i++) { 
    62                         byte b = bytes[i]; 
    63                         if (b == (byte) 0x0D) { 
    64                             byte[] response = toArray(buffer); 
    65                             LOGGER.trace("AEM UEGO Response: " + asHex(response)); 
    66                             return response; 
    67                         } else { 
    68                             buffer.add(b); 
    69                         } 
    70                     } 
    71                 } 
    72                 sleep(1); 
    73             } 
    74             LOGGER.warn("AEM UEGO Response [read timeout]"); 
    75             return new byte[0]; 
     45            String s = connection.readLine(); 
     46            LOGGER.trace("AEM UEGO Response: " + s); 
     47            return s.getBytes(CHARSET_UTF8); 
    7648        } catch (Exception e) { 
    7749            close(); 
     
    8052    } 
    8153 
    82     private int findStart(byte[] bytes) { 
    83         for (int i = 0; i < bytes.length; i++) { 
    84             if (bytes[i] == (byte) 0x0D) return i + 1; 
    85         } 
    86         return -1; 
    87     } 
    88  
    8954    public void close() { 
    9055        connection.close(); 
    9156    } 
    92  
    93     private byte[] toArray(List<Byte> buffer) { 
    94         byte[] result = new byte[buffer.size()]; 
    95         for (int j = 0; j < buffer.size(); j++) { 
    96             result[j] = buffer.get(j); 
    97         } 
    98         return result; 
    99     } 
    10057} 
  • trunk/src/com/romraider/logger/aem/io/AemConnectionProperties.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/io/AemRunner.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/io/AemRunnerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/plugin/AemConvertor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/plugin/AemConvertorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    1818 */ 
    1919 
     20 
    2021package com.romraider.logger.aem.plugin; 
    2122 
    2223import static com.romraider.util.HexUtil.asHex; 
    2324import org.apache.log4j.Logger; 
     25import static java.lang.Double.parseDouble; 
     26import java.nio.charset.Charset; 
    2427 
    2528public final class AemConvertorImpl implements AemConvertor { 
    2629    private static final Logger LOGGER = Logger.getLogger(AemConvertorImpl.class); 
     30    private static final Charset CHARSET_UTF8 = Charset.forName("UTF-8"); 
    2731 
    2832    public double convert(byte[] bytes) { 
    29         String value = new String(bytes); 
     33        String value = new String(bytes, CHARSET_UTF8); 
    3034        double result = convert(value); 
    3135        LOGGER.trace("Converting AEM response: " + asHex(bytes) + " --> \"" + value + "\" --> " + result); 
     
    3539    private double convert(String value) { 
    3640        try { 
    37             return Double.valueOf(value); 
     41            return parseDouble(value); 
    3842        } catch (NumberFormatException e) { 
    3943            LOGGER.error("Error converting AEM response to double: \"" + value + "\"", e); 
  • trunk/src/com/romraider/logger/aem/plugin/AemDataItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/plugin/AemDataSource.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3939 
    4040    public String getVersion() { 
    41         return "0.01"; 
     41        return "0.02"; 
    4242    } 
    4343 
  • trunk/src/com/romraider/logger/aem/plugin/AemSettings.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/plugin/AemSettingsImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/aem/plugin/DataListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/EcuLogger.java

    r233 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/EcuLoggerExec.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/controller/LoggerController.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/controller/LoggerControllerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/io/connection/LoggerConnection.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/io/connection/LoggerConnectionFactory.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/io/connection/SSMLoggerConnection.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/io/protocol/LoggerProtocol.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/io/protocol/SSMLoggerProtocol.java

    r207 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/manager/QueryManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/manager/QueryManagerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/manager/TransmissionManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/manager/TransmissionManagerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/EcuInit.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/EcuInitCallback.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/EcuQuery.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/EcuQueryImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/ExternalQuery.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/ExternalQueryImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/Query.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/Response.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/ResponseImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/query/SSMEcuInit.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/reset/ResetManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/comms/reset/ResetManagerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/ConvertorUpdateListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuAddress.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuAddressImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuData.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDataConvertor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDataLoader.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDataLoaderImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDataType.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDefinition.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDefinitionImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDerivedParameterConvertor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDerivedParameterConvertorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuDerivedParameterImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuParameter.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuParameterConvertorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuParameterImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuSwitch.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuSwitchConvertorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/EcuSwitchImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/ExternalData.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/ExternalDataImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/LoggerData.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/plugin/PluginFilenameFilter.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/xml/ConverterMaxMinDefaults.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/xml/EcuDefinitionHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/definition/xml/LoggerDefinitionHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/exception/ConfigurationException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class ConfigurationException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = 2021993520731842524L; 
     24    private static final long serialVersionUID = 2021993520731842524L; 
    2525 
    26         public ConfigurationException() { 
     26    public ConfigurationException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/FileLoggerException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class FileLoggerException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = -7851192938290131460L; 
     24    private static final long serialVersionUID = -7851192938290131460L; 
    2525 
    26         public FileLoggerException() { 
     26    public FileLoggerException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/InvalidResponseException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class InvalidResponseException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = 296093377055913575L; 
     24    private static final long serialVersionUID = 296093377055913575L; 
    2525 
    26         public InvalidResponseException() { 
     26    public InvalidResponseException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/NotConnectedException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222public final class NotConnectedException extends RuntimeException { 
    23         private static final long serialVersionUID = -7287379536144468034L; 
     23    private static final long serialVersionUID = -7287379536144468034L; 
    2424 
    25         public NotConnectedException() { 
     25    public NotConnectedException() { 
    2626    } 
    2727 
  • trunk/src/com/romraider/logger/ecu/exception/PortNotFoundException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class PortNotFoundException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = -523838685805525387L; 
     24    private static final long serialVersionUID = -523838685805525387L; 
    2525 
    26         public PortNotFoundException() { 
     26    public PortNotFoundException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/SerialCommunicationException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class SerialCommunicationException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = -3468947970939582263L; 
     24    private static final long serialVersionUID = -3468947970939582263L; 
    2525 
    26         public SerialCommunicationException() { 
     26    public SerialCommunicationException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/UnsupportedPortTypeException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class UnsupportedPortTypeException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = 5398746954800909391L; 
     24    private static final long serialVersionUID = 5398746954800909391L; 
    2525 
    26         public UnsupportedPortTypeException() { 
     26    public UnsupportedPortTypeException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/exception/UnsupportedProtocolException.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2222public final class UnsupportedProtocolException extends RuntimeException { 
    2323 
    24         private static final long serialVersionUID = -5005888534387937344L; 
     24    private static final long serialVersionUID = -5005888534387937344L; 
    2525 
    26         public UnsupportedProtocolException() { 
     26    public UnsupportedProtocolException() { 
    2727    } 
    2828 
  • trunk/src/com/romraider/logger/ecu/external/ExternalDataItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/external/ExternalDataSource.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/external/ExternalDataSourceLoader.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/external/ExternalDataSourceLoaderImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/external/GenericDataSourceConnector.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/external/GenericDataSourceManager.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfile.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileFileFilter.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileItemImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileLoader.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/UserProfileLoaderImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/profile/xml/UserProfileHandler.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/DataRegistrationBroker.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/DataRegistrationBrokerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/EcuDataComparator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/MessageListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/SerialPortComboBox.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2828 
    2929public final class SerialPortComboBox extends JComboBox implements SerialPortRefreshListener { 
    30         private static final long serialVersionUID = 5693976713268676676L; 
    31         private final Settings settings; 
     30    private static final long serialVersionUID = 5693976713268676676L; 
     31    private final Settings settings; 
    3232 
    3333    public SerialPortComboBox(Settings settings) { 
  • trunk/src/com/romraider/logger/ecu/ui/StatusChangeListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/StatusIndicator.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2929 
    3030public final class StatusIndicator extends JPanel implements StatusChangeListener { 
    31         private static final long serialVersionUID = -3244690866698807677L; 
    32         private final JLabel statusLabel = new JLabel(); 
     31    private static final long serialVersionUID = -3244690866698807677L; 
     32    private final JLabel statusLabel = new JLabel(); 
    3333    private static final String TEXT_CONNECTING = "Connecting to ECU..."; 
    3434    private static final String TEXT_READING = "Reading data..."; 
  • trunk/src/com/romraider/logger/ecu/ui/handler/DataUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/DataUpdateHandlerManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/DataUpdateHandlerManagerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/DashboardUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/DialGaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/Gauge.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2626 
    2727public final class Gauge extends JPanel { 
    28         private static final long serialVersionUID = 7354117571944547043L; 
    29         private GaugeStyle style; 
     28    private static final long serialVersionUID = 7354117571944547043L; 
     29    private GaugeStyle style; 
    3030 
    3131    public Gauge(GaugeStyle style) { 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/GaugeMinMax.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/GaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/GaugeUpdateListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/NoFrillsGaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/PlainGaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/SmallDialGaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/dash/SmallGaugeStyle.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileLogger.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileLoggerControllerSwitchHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileLoggerControllerSwitchMonitor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileLoggerControllerSwitchMonitorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileLoggerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/file/FileUpdateHandlerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/graph/GraphUpdateHandler.java

    r206 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    8787        panel.getInputMap(WHEN_IN_FOCUSED_WINDOW).put(getKeyStroke("F12"), "toggleCombineGraphs"); 
    8888        panel.getActionMap().put("toggleCombineGraphs", new AbstractAction() { 
    89                         private static final long serialVersionUID = 1540427179539775534L; 
    90  
    91                         public void actionPerformed(ActionEvent e) { 
     89            private static final long serialVersionUID = 1540427179539775534L; 
     90 
     91            public void actionPerformed(ActionEvent e) { 
    9292                combinedCheckbox.doClick(); 
    9393            } 
  • trunk/src/com/romraider/logger/ecu/ui/handler/graph/SpringUtilities.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/injector/InjectorUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/livedata/LiveDataRow.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/livedata/LiveDataTableModel.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3030 
    3131public final class LiveDataTableModel extends AbstractTableModel { 
    32         private static final long serialVersionUID = 3712433453224086342L; 
    33         private final String[] columnNames = {"Logger Data", "Min Value", "Current Value", "Max Value", "Units"}; 
     32    private static final long serialVersionUID = 3712433453224086342L; 
     33    private final String[] columnNames = {"Logger Data", "Min Value", "Current Value", "Max Value", "Units"}; 
    3434    private final List<LoggerData> registeredLoggerData = synchronizedList(new LinkedList<LoggerData>()); 
    3535    private final Map<LoggerData, LiveDataRow> dataRowMap = synchronizedMap(new LinkedHashMap<LoggerData, LiveDataRow>()); 
  • trunk/src/com/romraider/logger/ecu/ui/handler/livedata/LiveDataUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/handler/maf/MafUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2525import com.romraider.logger.ecu.ui.tab.maf.MafTab; 
    2626import org.apache.log4j.Logger; 
     27import static org.apache.log4j.Logger.getLogger; 
    2728import javax.swing.SwingUtilities; 
    2829import static java.lang.Math.abs; 
     
    3132 
    3233public final class MafUpdateHandler implements DataUpdateHandler { 
    33     private static final Logger LOGGER = Logger.getLogger(MafUpdateHandler.class); 
     34    private static final Logger LOGGER = getLogger(MafUpdateHandler.class); 
    3435    private static final String MAFV = "P18"; 
    3536    private static final String AF_LEARNING_1 = "P4"; 
  • trunk/src/com/romraider/logger/ecu/ui/handler/table/TableUpdateHandler.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/paramlist/ParameterListTable.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2929 
    3030public final class ParameterListTable extends JTable { 
    31         private static final long serialVersionUID = -8489190548281346227L; 
    32         private UnitsComboBoxEditor comboBoxEditor = new UnitsComboBoxEditor(); 
     31    private static final long serialVersionUID = -8489190548281346227L; 
     32    private UnitsComboBoxEditor comboBoxEditor = new UnitsComboBoxEditor(); 
    3333    private UnitsComboBoxRenderer comboBoxRenderer = new UnitsComboBoxRenderer(); 
    3434    private final ParameterListTableModel tableModel; 
  • trunk/src/com/romraider/logger/ecu/ui/paramlist/ParameterListTableModel.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3232 
    3333public final class ParameterListTableModel extends AbstractTableModel { 
    34         private static final long serialVersionUID = -2556400867696538881L; 
    35         private final String[] columnNames; 
     34    private static final long serialVersionUID = -2556400867696538881L; 
     35    private final String[] columnNames; 
    3636    private final List<LoggerData> registeredLoggerData = synchronizedList(new LinkedList<LoggerData>()); 
    3737    private final Map<LoggerData, ParameterRow> paramRowMap = synchronizedMap(new LinkedHashMap<LoggerData, ParameterRow>()); 
  • trunk/src/com/romraider/logger/ecu/ui/paramlist/ParameterRow.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/paramlist/UnitsComboBoxEditor.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3131 
    3232public final class UnitsComboBoxEditor extends AbstractCellEditor implements TableCellEditor, ActionListener { 
    33         private static final long serialVersionUID = -3472910399604360821L; 
    34         private static final String EDIT_COMMAND = "EDIT"; 
     33    private static final long serialVersionUID = -3472910399604360821L; 
     34    private static final String EDIT_COMMAND = "EDIT"; 
    3535    private EcuData currentEcuData; 
    3636 
  • trunk/src/com/romraider/logger/ecu/ui/paramlist/UnitsComboBoxRenderer.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2929public final class UnitsComboBoxRenderer extends JComboBox implements TableCellRenderer { 
    3030 
    31         private static final long serialVersionUID = -6288079743431509778L; 
     31    private static final long serialVersionUID = -6288079743431509778L; 
    3232 
    33         public Component getTableCellRendererComponent(JTable table, Object ecuData, boolean isSelected, boolean hasFocus, int row, int column) { 
     33    public Component getTableCellRendererComponent(JTable table, Object ecuData, boolean isSelected, boolean hasFocus, int row, int column) { 
    3434        EcuData currentEcuData = (EcuData) ecuData; 
    3535        EcuDataConvertor[] convertors = currentEcuData.getConvertors(); 
  • trunk/src/com/romraider/logger/ecu/ui/playback/PlaybackManager.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/playback/PlaybackManagerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/layout/BetterFlowLayout.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2727 
    2828public final class BetterFlowLayout extends FlowLayout { 
    29         private static final long serialVersionUID = -6784712723817241270L; 
     29    private static final long serialVersionUID = -6784712723817241270L; 
    3030 
    31         public BetterFlowLayout() { 
     31    public BetterFlowLayout() { 
    3232        super(); 
    3333    } 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/EcuLoggerMenu.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2424public final class EcuLoggerMenu extends JMenu { 
    2525 
    26         private static final long serialVersionUID = -5058943622469501273L; 
     26    private static final long serialVersionUID = -5058943622469501273L; 
    2727 
    28         public EcuLoggerMenu(String text, int mnemonic) { 
     28    public EcuLoggerMenu(String text, int mnemonic) { 
    2929        setText(text); 
    3030        setMnemonic(mnemonic); 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/EcuLoggerMenuBar.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    6262public class EcuLoggerMenuBar extends JMenuBar { 
    6363 
    64         private static final long serialVersionUID = 7081586516953740186L; 
     64    private static final long serialVersionUID = 7081586516953740186L; 
    6565 
    66         public EcuLoggerMenuBar(EcuLogger logger, List<ExternalDataSource> externalDataSources) { 
     66    public EcuLoggerMenuBar(EcuLogger logger, List<ExternalDataSource> externalDataSources) { 
    6767 
    6868        // file menu items 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/EcuLoggerMenuItem.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2626public final class EcuLoggerMenuItem extends JMenuItem { 
    2727 
    28         private static final long serialVersionUID = 8944116003490787227L; 
     28    private static final long serialVersionUID = 8944116003490787227L; 
    2929 
    30         public EcuLoggerMenuItem(String text, Action action) { 
     30    public EcuLoggerMenuItem(String text, Action action) { 
    3131        super(action); 
    3232        setText(text); 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/EcuLoggerRadioButtonMenuItem.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2727public final class EcuLoggerRadioButtonMenuItem extends JRadioButtonMenuItem { 
    2828 
    29         private static final long serialVersionUID = -7872873697564909545L; 
     29    private static final long serialVersionUID = -7872873697564909545L; 
    3030 
    31         public EcuLoggerRadioButtonMenuItem(String text, int mnemonic, KeyStroke accelerator, Action action, boolean selected) { 
     31    public EcuLoggerRadioButtonMenuItem(String text, int mnemonic, KeyStroke accelerator, Action action, boolean selected) { 
    3232        super(action); 
    3333        initSelectionStateAdaptor(action); 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/AboutAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/AbstractAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/DisconnectAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/ExitAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/GenericPluginMenuAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/LoadProfileAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/LogFileAbsoluteTimestampAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/LogFileControllerSwitchAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/LogFileLocationAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/LoggerDefinitionLocationAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/ReloadProfileAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/ResetConnectionAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/ResetEcuAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/SaveProfileAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/SaveProfileAsAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/ToggleButtonAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/action/UpdateLoggerDefAction.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/util/FileHelper.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/menubar/util/SelectionStateAdaptor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/vertical/VerticalLabelUI.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/swing/vertical/VerticalTextIcon.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/tab/LoggerChartPanel.java

    r205 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    4545 
    4646public final class LoggerChartPanel extends JPanel { 
    47         private static final long serialVersionUID = -6579979878171615665L; 
    48         private static final Color DARK_GREY = new Color(80, 80, 80); 
     47    private static final long serialVersionUID = -6579979878171615665L; 
     48    private static final Color DARK_GREY = new Color(80, 80, 80); 
    4949    private static final Color LIGHT_GREY = new Color(110, 110, 110); 
    5050    private final XYSeries data = new XYSeries("Data"); 
  • trunk/src/com/romraider/logger/ecu/ui/tab/Tab.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2020package com.romraider.logger.ecu.ui.tab; 
    2121 
    22 import java.util.List; 
    23  
    24 import javax.swing.JPanel; 
    25  
    2622import com.romraider.logger.ecu.definition.EcuParameter; 
    2723import com.romraider.logger.ecu.definition.EcuSwitch; 
    2824import com.romraider.logger.ecu.definition.ExternalData; 
     25import javax.swing.JPanel; 
     26import java.util.List; 
    2927 
    3028/** 
    3129 * Interface for Logger tabs that have the following: 
    32  *  
     30 * <p/> 
    3331 * Control panel where logging information and constraints are set 
    3432 * ChartPanel where graph of data is displayed 
    35  * 
    3633 */ 
    3734public interface Tab { 
  • trunk/src/com/romraider/logger/ecu/ui/tab/TableFinder.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/tab/XYTrendline.java

    r207 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3232public final class XYTrendline extends AbstractXYDataset { 
    3333 
    34         private static final long serialVersionUID = 1375705537694372443L; 
    35         private List<XYDataItem> items = new ArrayList<XYDataItem>(); 
     34    private static final long serialVersionUID = 1375705537694372443L; 
     35    private List<XYDataItem> items = new ArrayList<XYDataItem>(); 
    3636    private double[] xVals = new double[0]; 
    3737    private double[] yPoly = new double[0]; 
  • trunk/src/com/romraider/logger/ecu/ui/tab/injector/InjectorControlPanel.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    6161public final class InjectorControlPanel extends JPanel { 
    6262    /** 
    63          *  
    64         */ 
    65         private static final long serialVersionUID = -3570410894599258706L; 
    66         private static final Logger LOGGER = Logger.getLogger(InjectorControlPanel.class); 
     63     * 
     64    */ 
     65    private static final long serialVersionUID = -3570410894599258706L; 
     66    private static final Logger LOGGER = Logger.getLogger(InjectorControlPanel.class); 
    6767    private static final String COOLANT_TEMP = "P2"; 
    6868    private static final String ENGINE_SPEED = "P8"; 
     
    8282    private final JTextField mafvMin = new JTextField("1.20", 3); 
    8383    private final JTextField mafvMax = new JTextField("2.60", 3); 
    84     private final JTextField afrMin = new JTextField("14.0", 3); 
     84    private final JTextField afrMin = new JTextField("13.0", 3); 
    8585    private final JTextField afrMax = new JTextField("16.0", 3); 
    8686    private final JTextField rpmMin = new JTextField("0", 3); 
     
    8888    private final JTextField mafMin = new JTextField("20", 3); 
    8989    private final JTextField mafMax = new JTextField("100", 3); 
    90     private final JTextField iatMax = new JTextField("35", 3); 
     90    private final JTextField iatMax = new JTextField("45", 3); 
    9191    private final JTextField coolantMin = new JTextField("70", 3); 
    9292    private final JTextField mafvChangeMax = new JTextField("0.2", 3); 
  • trunk/src/com/romraider/logger/ecu/ui/tab/injector/InjectorTab.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/ecu/ui/tab/injector/InjectorTabImpl.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3636 
    3737public final class InjectorTabImpl extends JPanel implements InjectorTab { 
    38         private static final long serialVersionUID = 5365322624406058883L; 
    39         private final LoggerChartPanel chartPanel = new LoggerChartPanel("Pulse Width (ms)", "Fuel per Combustion Event (cc)"); 
     38    private static final long serialVersionUID = 5365322624406058883L; 
     39    private final LoggerChartPanel chartPanel = new LoggerChartPanel("Pulse Width (ms)", "Fuel per Combustion Event (cc)"); 
    4040    private final InjectorControlPanel controlPanel; 
    4141 
  • trunk/src/com/romraider/logger/ecu/ui/tab/maf/MafControlPanel.java

    r233 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    7878    private final JTextField mafvMin = new JTextField("1.20", 3); 
    7979    private final JTextField mafvMax = new JTextField("2.60", 3); 
    80     private final JTextField afrMin = new JTextField("14.0", 3); 
     80    private final JTextField afrMin = new JTextField("13.0", 3); 
    8181    private final JTextField afrMax = new JTextField("16.0", 3); 
    8282    private final JTextField rpmMin = new JTextField("0", 3); 
     
    8484    private final JTextField mafMin = new JTextField("0", 3); 
    8585    private final JTextField mafMax = new JTextField("100", 3); 
    86     private final JTextField iatMax = new JTextField("35", 3); 
     86    private final JTextField iatMax = new JTextField("45", 3); 
    8787    private final JTextField coolantMin = new JTextField("70", 3); 
    8888    private final JTextField mafvChangeMax = new JTextField("0.2", 3); 
  • trunk/src/com/romraider/logger/ecu/ui/tab/maf/MafTab.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2424public interface MafTab extends Tab { 
    2525 
    26         boolean isValidClOl(double value); 
     26    boolean isValidClOl(double value); 
    2727 
    2828    boolean isValidAfr(double value); 
  • trunk/src/com/romraider/logger/ecu/ui/tab/maf/MafTabImpl.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3636 
    3737public final class MafTabImpl extends JPanel implements MafTab { 
    38         private static final long serialVersionUID = -6978027421649432740L; 
    39         private final LoggerChartPanel chartPanel = new LoggerChartPanel("MAF (v)", "Total Correction (%)"); 
     38    private static final long serialVersionUID = -6978027421649432740L; 
     39    private final LoggerChartPanel chartPanel = new LoggerChartPanel("MAF (v)", "Total Correction (%)"); 
    4040    private final MafControlPanel controlPanel; 
    4141 
  • trunk/src/com/romraider/logger/innovate/generic/io/InnovateConnection.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/io/InnovateConnectionImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/io/InnovateConnectionProperties.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/io/InnovateRunner.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/io/InnovateRunnerImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/plugin/DataConvertor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/plugin/DataListener.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/plugin/InnovateSettings.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/generic/plugin/InnovateSettingsImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lc1/plugin/Lc1DataConvertor.java

    r233 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lc1/plugin/Lc1DataItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lc1/plugin/Lc1DataSource.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lm1/plugin/Lm1DataConvertor.java

    r233 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lm1/plugin/Lm1DataItem.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lm1/plugin/Lm1DataSource.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/innovate/lm2/plugin/Lm2DataConvertor.java

    r232 r234  
    11/* 
    2  * Copyright (c) 2009. Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
    3  * Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan. 
    4  * Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna. 
    5  * Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus. 
    6  * Vestibulum commodo. Ut rhoncus gravida arcu. 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
    718 */ 
    819 
  • trunk/src/com/romraider/logger/innovate/lm2/plugin/Lm2DataItem.java

    r232 r234  
    11/* 
    2  * Copyright (c) 2009. Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
    3  * Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan. 
    4  * Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna. 
    5  * Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus. 
    6  * Vestibulum commodo. Ut rhoncus gravida arcu. 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
    718 */ 
    819 
  • trunk/src/com/romraider/logger/innovate/lm2/plugin/Lm2DataSource.java

    r232 r234  
    11/* 
    2  * Copyright (c) 2009. Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
    3  * Morbi non lorem porttitor neque feugiat blandit. Ut vitae ipsum eget quam lacinia accumsan. 
    4  * Etiam sed turpis ac ipsum condimentum fringilla. Maecenas magna. 
    5  * Proin dapibus sapien vel ante. Aliquam erat volutpat. Pellentesque sagittis ligula eget metus. 
    6  * Vestibulum commodo. Ut rhoncus gravida arcu. 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
    718 */ 
    819 
  • trunk/src/com/romraider/logger/innovate/mts/ClassFactory.java

    r233 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.innovate.mts; 
    221 
  • trunk/src/com/romraider/logger/innovate/mts/IMTS.java

    r233 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.innovate.mts; 
    221 
  • trunk/src/com/romraider/logger/innovate/mts/Test.java

    r233 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.innovate.mts; 
    221 
  • trunk/src/com/romraider/logger/innovate/mts/events/_IMTSEvents.java

    r233 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.innovate.mts.events; 
    221 
  • trunk/src/com/romraider/logger/plx/io/PlxConnection.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/io/PlxConnectionImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/io/PlxConnectionProperties.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/io/PlxParser.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
  • trunk/src/com/romraider/logger/plx/io/PlxParserImpl.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
  • trunk/src/com/romraider/logger/plx/io/PlxResponse.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
  • trunk/src/com/romraider/logger/plx/io/PlxRunner.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/io/PlxRunnerImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/io/PlxSensorType.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
  • trunk/src/com/romraider/logger/plx/io/PlxSensorUnits.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
    322public enum PlxSensorUnits { 
    4         WIDEBAND_AFR_LAMBDA(0), 
    5         WIDEBAND_AFR_GASOLINE147(1), 
    6         WIDEBAND_AFR_DIESEL146(2), 
    7         WIDEBAND_AFR_METHANOL64(3), 
    8         WIDEBAND_AFR_ETHANOL90(4), 
    9         WIDEBAND_AFR_LPG155(5), 
    10         WIDEBAND_AFR_CNG172(6), 
    11         EXHAUST_GAS_TEMPERATURE_CELSIUS(0), 
    12         EXHAUST_GAS_TEMPERATURE_FAHRENHEIT(1), 
    13         AIR_INTAKE_TEMPERATURE_CELSUIS(0), 
    14         AIR_INTAKE_TEMPERATURE_FAHRENHEIT(1), 
    15         KNOCK(0); 
     23    WIDEBAND_AFR_LAMBDA(0), 
     24    WIDEBAND_AFR_GASOLINE147(1), 
     25    WIDEBAND_AFR_DIESEL146(2), 
     26    WIDEBAND_AFR_METHANOL64(3), 
     27    WIDEBAND_AFR_ETHANOL90(4), 
     28    WIDEBAND_AFR_LPG155(5), 
     29    WIDEBAND_AFR_CNG172(6), 
     30    EXHAUST_GAS_TEMPERATURE_CELSIUS(0), 
     31    EXHAUST_GAS_TEMPERATURE_FAHRENHEIT(1), 
     32    AIR_INTAKE_TEMPERATURE_CELSUIS(0), 
     33    AIR_INTAKE_TEMPERATURE_FAHRENHEIT(1), 
     34    KNOCK(0); 
    1635 
    1736    private final int value; 
  • trunk/src/com/romraider/logger/plx/io/TestPlxConnection.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.io; 
    221 
     
    3150    } 
    3251 
     52    public String readLine() { 
     53        throw new UnsupportedOperationException(); 
     54    } 
     55 
    3356    public void close() { 
    3457        index = 0; 
  • trunk/src/com/romraider/logger/plx/plugin/PlxConvertor.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2020package com.romraider.logger.plx.plugin; 
    2121 
     22import com.romraider.logger.plx.io.PlxSensorType; 
    2223import com.romraider.logger.plx.io.PlxSensorUnits; 
    23 import com.romraider.logger.plx.io.PlxSensorType; 
    2424 
    2525public interface PlxConvertor { 
  • trunk/src/com/romraider/logger/plx/plugin/PlxConvertorImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/plugin/PlxDataItem.java

    r224 r234  
     1/* 
     2 * RomRaider Open-Source Tuning, Logging and Reflashing 
     3 * Copyright (C) 2006-2009 RomRaider.com 
     4 * 
     5 * This program is free software; you can redistribute it and/or modify 
     6 * it under the terms of the GNU General Public License as published by 
     7 * the Free Software Foundation; either version 2 of the License, or 
     8 * (at your option) any later version. 
     9 * 
     10 * This program is distributed in the hope that it will be useful, 
     11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     13 * GNU General Public License for more details. 
     14 * 
     15 * You should have received a copy of the GNU General Public License along 
     16 * with this program; if not, write to the Free Software Foundation, Inc., 
     17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
     18 */ 
     19 
    120package com.romraider.logger.plx.plugin; 
    221 
  • trunk/src/com/romraider/logger/plx/plugin/PlxDataItemImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2020package com.romraider.logger.plx.plugin; 
    2121 
     22import com.romraider.logger.plx.io.PlxSensorType; 
    2223import com.romraider.logger.plx.io.PlxSensorUnits; 
    23 import com.romraider.logger.plx.io.PlxSensorType; 
    2424 
    2525public final class PlxDataItemImpl implements PlxDataItem { 
  • trunk/src/com/romraider/logger/plx/plugin/PlxDataSource.java

    r231 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/plugin/PlxSettings.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/logger/plx/plugin/PlxSettingsImpl.java

    r224 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/maps/DataCell.java

    r210 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3838 
    3939public class DataCell extends JLabel implements MouseListener, Serializable { 
    40         private static final long serialVersionUID = -2904293227148940937L; 
    41         private static final Logger LOGGER = Logger.getLogger(DataCell.class); 
     40    private static final long serialVersionUID = -2904293227148940937L; 
     41    private static final Logger LOGGER = Logger.getLogger(DataCell.class); 
    4242    private static final DecimalFormat PERCENT_FORMAT = new DecimalFormat("#,##0.0%"); 
    4343    private final Border defaultBorder = createLineBorder(BLACK, 1); 
  • trunk/src/com/romraider/maps/Rom.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3333 
    3434public class Rom implements Serializable { 
    35         private static final long serialVersionUID = 7865405179738828128L; 
    36         private static final Logger LOGGER = Logger.getLogger(Rom.class); 
     35    private static final long serialVersionUID = 7865405179738828128L; 
     36    private static final Logger LOGGER = Logger.getLogger(Rom.class); 
    3737    private RomID romID = new RomID(); 
    3838    private String fileName = ""; 
  • trunk/src/com/romraider/maps/RomID.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2626public class RomID implements Serializable { 
    2727 
    28         private static final long serialVersionUID = 7272741253665400643L; 
    29         private String xmlid = "";//ID stored in XML 
     28    private static final long serialVersionUID = 7272741253665400643L; 
     29    private String xmlid = "";//ID stored in XML 
    3030    private int internalIdAddress = 0;//address of ECU version in image 
    3131    private String internalIdString = "";//ID stored in image 
  • trunk/src/com/romraider/maps/Scale.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2626public class Scale implements Serializable { 
    2727 
    28         private static final long serialVersionUID = 5836610685159474795L; 
    29         public static final int LINEAR = 1; 
     28    private static final long serialVersionUID = 5836610685159474795L; 
     29    public static final int LINEAR = 1; 
    3030    public static final int INVERSE = 2; 
    3131 
  • trunk/src/com/romraider/maps/Table.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    126126        // key binding actions 
    127127        Action rightAction = new AbstractAction() { 
    128                         private static final long serialVersionUID = 1042884198300385041L; 
    129  
    130                         public void actionPerformed(ActionEvent e) { 
     128            private static final long serialVersionUID = 1042884198300385041L; 
     129 
     130            public void actionPerformed(ActionEvent e) { 
    131131                cursorRight(); 
    132132            } 
    133133        }; 
    134134        Action leftAction = new AbstractAction() { 
    135                         private static final long serialVersionUID = -4970441255677214171L; 
    136  
    137                         public void actionPerformed(ActionEvent e) { 
     135            private static final long serialVersionUID = -4970441255677214171L; 
     136 
     137            public void actionPerformed(ActionEvent e) { 
    138138                cursorLeft(); 
    139139            } 
    140140        }; 
    141141        Action downAction = new AbstractAction() { 
    142                         private static final long serialVersionUID = -7898502951121825984L; 
    143  
    144                         public void actionPerformed(ActionEvent e) { 
     142            private static final long serialVersionUID = -7898502951121825984L; 
     143 
     144            public void actionPerformed(ActionEvent e) { 
    145145                cursorDown(); 
    146146            } 
    147147        }; 
    148148        Action upAction = new AbstractAction() { 
    149                         private static final long serialVersionUID = 6937621541727666631L; 
    150  
    151                         public void actionPerformed(ActionEvent e) { 
     149            private static final long serialVersionUID = 6937621541727666631L; 
     150 
     151            public void actionPerformed(ActionEvent e) { 
    152152                cursorUp(); 
    153153            } 
    154154        }; 
    155155        Action incCoarseAction = new AbstractAction() { 
    156                         private static final long serialVersionUID = -8308522736529183148L; 
    157  
    158                         public void actionPerformed(ActionEvent e) { 
     156            private static final long serialVersionUID = -8308522736529183148L; 
     157 
     158            public void actionPerformed(ActionEvent e) { 
    159159                frame.getToolBar().incrementCoarse(); 
    160160            } 
    161161        }; 
    162162        Action decCoarseAction = new AbstractAction() { 
    163                         private static final long serialVersionUID = -7407628920997400915L; 
    164  
    165                         public void actionPerformed(ActionEvent e) { 
     163            private static final long serialVersionUID = -7407628920997400915L; 
     164 
     165            public void actionPerformed(ActionEvent e) { 
    166166                frame.getToolBar().decrementCoarse(); 
    167167            } 
    168168        }; 
    169169        Action incFineAction = new AbstractAction() { 
    170                         private static final long serialVersionUID = 7261463425941761433L; 
    171  
    172                         public void actionPerformed(ActionEvent e) { 
     170            private static final long serialVersionUID = 7261463425941761433L; 
     171 
     172            public void actionPerformed(ActionEvent e) { 
    173173                frame.getToolBar().incrementFine(); 
    174174            } 
    175175        }; 
    176176        Action decFineAction = new AbstractAction() { 
    177                         private static final long serialVersionUID = 8929400237520608035L; 
    178  
    179                         public void actionPerformed(ActionEvent e) { 
     177            private static final long serialVersionUID = 8929400237520608035L; 
     178 
     179            public void actionPerformed(ActionEvent e) { 
    180180                frame.getToolBar().decrementFine(); 
    181181            } 
    182182        }; 
    183183        Action num0Action = new AbstractAction() { 
    184                         private static final long serialVersionUID = -6310984176739090034L; 
    185  
    186                         public void actionPerformed(ActionEvent e) { 
     184            private static final long serialVersionUID = -6310984176739090034L; 
     185 
     186            public void actionPerformed(ActionEvent e) { 
    187187                getFrame().getToolBar().focusSetValue('0'); 
    188188            } 
    189189        }; 
    190190        Action num1Action = new AbstractAction() { 
    191                         private static final long serialVersionUID = -6187220355403883499L; 
    192  
    193                         public void actionPerformed(ActionEvent e) { 
     191            private static final long serialVersionUID = -6187220355403883499L; 
     192 
     193            public void actionPerformed(ActionEvent e) { 
    194194                getFrame().getToolBar().focusSetValue('1'); 
    195195            } 
    196196        }; 
    197197        Action num2Action = new AbstractAction() { 
    198                         private static final long serialVersionUID = -8745505977907325720L; 
    199  
    200                         public void actionPerformed(ActionEvent e) { 
     198            private static final long serialVersionUID = -8745505977907325720L; 
     199 
     200            public void actionPerformed(ActionEvent e) { 
    201201                getFrame().getToolBar().focusSetValue('2'); 
    202202            } 
    203203        }; 
    204204        Action num3Action = new AbstractAction() { 
    205                         private static final long serialVersionUID = 4694872385823448942L; 
    206  
    207                         public void actionPerformed(ActionEvent e) { 
     205            private static final long serialVersionUID = 4694872385823448942L; 
     206 
     207            public void actionPerformed(ActionEvent e) { 
    208208                getFrame().getToolBar().focusSetValue('3'); 
    209209            } 
    210210        }; 
    211211        Action num4Action = new AbstractAction() { 
    212                         private static final long serialVersionUID = 4005741329254221678L; 
    213  
    214                         public void actionPerformed(ActionEvent e) { 
     212            private static final long serialVersionUID = 4005741329254221678L; 
     213 
     214            public void actionPerformed(ActionEvent e) { 
    215215                getFrame().getToolBar().focusSetValue('4'); 
    216216            } 
    217217        }; 
    218218        Action num5Action = new AbstractAction() { 
    219                         private static final long serialVersionUID = -5846094949106279884L; 
    220  
    221                         public void actionPerformed(ActionEvent e) { 
     219            private static final long serialVersionUID = -5846094949106279884L; 
     220 
     221            public void actionPerformed(ActionEvent e) { 
    222222                getFrame().getToolBar().focusSetValue('5'); 
    223223            } 
    224224        }; 
    225225        Action num6Action = new AbstractAction() { 
    226                         private static final long serialVersionUID = -5338656374925334150L; 
    227  
    228                         public void actionPerformed(ActionEvent e) { 
     226            private static final long serialVersionUID = -5338656374925334150L; 
     227 
     228            public void actionPerformed(ActionEvent e) { 
    229229                getFrame().getToolBar().focusSetValue('6'); 
    230230            } 
    231231        }; 
    232232        Action num7Action = new AbstractAction() { 
    233                         private static final long serialVersionUID = 1959983381590509303L; 
    234  
    235                         public void actionPerformed(ActionEvent e) { 
     233            private static final long serialVersionUID = 1959983381590509303L; 
     234 
     235            public void actionPerformed(ActionEvent e) { 
    236236                getFrame().getToolBar().focusSetValue('7'); 
    237237            } 
    238238        }; 
    239239        Action num8Action = new AbstractAction() { 
    240                         private static final long serialVersionUID = 7442763278699460648L; 
    241  
    242                         public void actionPerformed(ActionEvent e) { 
     240            private static final long serialVersionUID = 7442763278699460648L; 
     241 
     242            public void actionPerformed(ActionEvent e) { 
    243243                getFrame().getToolBar().focusSetValue('8'); 
    244244            } 
    245245        }; 
    246246        Action num9Action = new AbstractAction() { 
    247                         private static final long serialVersionUID = 7475171864584215094L; 
    248  
    249                         public void actionPerformed(ActionEvent e) { 
     247            private static final long serialVersionUID = 7475171864584215094L; 
     248 
     249            public void actionPerformed(ActionEvent e) { 
    250250                getFrame().getToolBar().focusSetValue('9'); 
    251251            } 
    252252        }; 
    253253        Action numPointAction = new AbstractAction() { 
    254                         private static final long serialVersionUID = -4729135055857591830L; 
    255  
    256                         public void actionPerformed(ActionEvent e) { 
     254            private static final long serialVersionUID = -4729135055857591830L; 
     255 
     256            public void actionPerformed(ActionEvent e) { 
    257257                getFrame().getToolBar().focusSetValue('.'); 
    258258            } 
    259259        }; 
    260260        Action copyAction = new AbstractAction() { 
    261                         private static final long serialVersionUID = -6978981449261938672L; 
    262  
    263                         public void actionPerformed(ActionEvent e) { 
     261            private static final long serialVersionUID = -6978981449261938672L; 
     262 
     263            public void actionPerformed(ActionEvent e) { 
    264264                copySelection(); 
    265265            } 
    266266        }; 
    267267        Action pasteAction = new AbstractAction() { 
    268                         private static final long serialVersionUID = 2026817603236490899L; 
    269  
    270                         public void actionPerformed(ActionEvent e) { 
     268            private static final long serialVersionUID = 2026817603236490899L; 
     269 
     270            public void actionPerformed(ActionEvent e) { 
    271271                paste(); 
    272272            } 
    273273        }; 
    274274        Action multiplyAction = new AbstractAction() { 
    275                         private static final long serialVersionUID = -2350912575392447149L; 
    276  
    277                         public void actionPerformed(ActionEvent e) { 
     275            private static final long serialVersionUID = -2350912575392447149L; 
     276 
     277            public void actionPerformed(ActionEvent e) { 
    278278                getFrame().getToolBar().multiply(); 
    279279            } 
     
    869869                byte[] output; 
    870870                if (storageType != STORAGE_TYPE_FLOAT) { 
    871                     // calculate byte values 
     871                    // convert byte values 
    872872                    output = RomAttributeParser.parseIntegerValue((int) data[i].getBinValue(), endian, storageType); 
    873873                    for (int z = 0; z < storageType; z++) { // insert into file 
     
    876876 
    877877                } else { // float 
    878                     // calculate byte values 
     878                    // convert byte values 
    879879                    output = RomAttributeParser.floatToByte((float) data[i].getBinValue(), endian); 
    880880                    for (int z = 0; z < 4; z++) { // insert in to file 
     
    11001100 
    11011101            double startValue = 5; 
    1102             double toReal = JEPUtil.evaluate(scales.get(scaleIndex).getExpression(), startValue); // calculate real world value of "5" 
     1102            double toReal = JEPUtil.evaluate(scales.get(scaleIndex).getExpression(), startValue); // convert real world value of "5" 
    11031103            double endValue = JEPUtil.evaluate(scales.get(scaleIndex).getByteExpression(), toReal); 
    11041104 
  • trunk/src/com/romraider/maps/Table1D.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2626 
    2727public class Table1D extends Table { 
    28         private static final long serialVersionUID = -8747180767803835631L; 
    29         private Color axisColor = new Color(255, 255, 255); 
     28    private static final long serialVersionUID = -8747180767803835631L; 
     29    private Color axisColor = new Color(255, 255, 255); 
    3030 
    3131    public Table1D(Settings settings) { 
  • trunk/src/com/romraider/maps/Table2D.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3838 
    3939public class Table2D extends Table { 
    40         private static final long serialVersionUID = -7684570967109324784L; 
    41         private static final String NEW_LINE = System.getProperty("line.separator"); 
     40    private static final long serialVersionUID = -7684570967109324784L; 
     41    private static final String NEW_LINE = System.getProperty("line.separator"); 
    4242    private Table1D axis = new Table1D(new Settings()); 
    4343 
  • trunk/src/com/romraider/maps/Table3D.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    4545public class Table3D extends Table { 
    4646 
    47         private static final long serialVersionUID = 3103448753263606599L; 
    48         private Table1D xAxis = new Table1D(new Settings()); 
     47    private static final long serialVersionUID = 3103448753263606599L; 
     48    private Table1D xAxis = new Table1D(new Settings()); 
    4949    private Table1D yAxis = new Table1D(new Settings()); 
    5050    private DataCell[][] data = new DataCell[1][1]; 
  • trunk/src/com/romraider/maps/TableSwitch.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3131public class TableSwitch extends Table { 
    3232 
    33         private static final long serialVersionUID = -4887718305447362308L; 
    34         private byte[] on = new byte[0]; 
     33    private static final long serialVersionUID = -4887718305447362308L; 
     34    private byte[] on = new byte[0]; 
    3535    private byte[] off = new byte[0]; 
    3636    private JCheckBox checkbox = new JCheckBox("Enabled", true); // checkbox selected by default 
  • trunk/src/com/romraider/net/BrowserControl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/net/URL.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2929public class URL extends JLabel implements MouseListener { 
    3030 
    31         private static final long serialVersionUID = 8972482185527165793L; 
    32         String url = ""; 
     31    private static final long serialVersionUID = 8972482185527165793L; 
     32    String url = ""; 
    3333 
    3434    public URL(String url) { 
  • trunk/src/com/romraider/ramtune/test/RamTuneTestApp.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222import com.romraider.Settings; 
    23 import com.romraider.swing.AbstractFrame; 
    2423import com.romraider.io.connection.ConnectionProperties; 
    2524import com.romraider.io.protocol.Protocol; 
     
    3433import com.romraider.ramtune.test.command.generator.WriteCommandGenerator; 
    3534import com.romraider.ramtune.test.io.RamTuneTestAppConnectionProperties; 
     35import com.romraider.swing.AbstractFrame; 
    3636import com.romraider.swing.LookAndFeelManager; 
    3737import static com.romraider.util.HexUtil.asBytes; 
     
    8585 */ 
    8686public final class RamTuneTestApp extends AbstractFrame { 
    87         private static final long serialVersionUID = 7140513114169019846L; 
    88         private static final String REGEX_VALID_ADDRESS_BYTES = "[0-9a-fA-F]{6}"; 
     87    private static final long serialVersionUID = 7140513114169019846L; 
     88    private static final String REGEX_VALID_ADDRESS_BYTES = "[0-9a-fA-F]{6}"; 
    8989    private static final String REGEX_VALID_DATA_BYTES = "[0-9a-fA-F]{2,}"; 
    9090    private final Protocol protocol = new SSMProtocol(); 
  • trunk/src/com/romraider/ramtune/test/command/executor/CommandExecutor.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/executor/CommandExecutorImpl.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/generator/AbstractCommandGenerator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/generator/CommandGenerator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/generator/EcuInitCommandGenerator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/generator/ReadCommandGenerator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/command/generator/WriteCommandGenerator.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/ramtune/test/io/RamTuneTestAppConnectionProperties.java

    r189 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
  • trunk/src/com/romraider/swing/CategoryTreeNode.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2525public class CategoryTreeNode extends DefaultMutableTreeNode { 
    2626 
    27         private static final long serialVersionUID = -752423096680196879L; 
    28         private Rom rom; 
     27    private static final long serialVersionUID = -752423096680196879L; 
     28    private Rom rom; 
    2929 
    3030    public CategoryTreeNode(String name, Rom rom) { 
  • trunk/src/com/romraider/swing/DebugPanel.java

    r203 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3030public class DebugPanel extends JPanel { 
    3131 
    32         private static final long serialVersionUID = -7159385694793030962L; 
     32    private static final long serialVersionUID = -7159385694793030962L; 
    3333 
    34         public DebugPanel(Exception ex, String url) { 
     34    public DebugPanel(Exception ex, String url) { 
    3535        setLayout(new BorderLayout()); 
    3636 
  • trunk/src/com/romraider/swing/DefinitionManager.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2121 
    2222import com.romraider.editor.ecu.ECUEditor; 
    23  
    2423import javax.swing.JFileChooser; 
    2524import javax.swing.ListSelectionModel; 
     
    3231public class DefinitionManager extends javax.swing.JFrame implements ActionListener { 
    3332 
    34         private static final long serialVersionUID = -3920843496218196737L; 
    35         public static int MOVE_UP = 0; 
     33    private static final long serialVersionUID = -3920843496218196737L; 
     34    public static int MOVE_UP = 0; 
    3635    public static int MOVE_DOWN = 1; 
    3736 
  • trunk/src/com/romraider/swing/ECUEditorMenuBar.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    2727import static com.romraider.Version.SUPPORT_URL; 
    2828import static com.romraider.Version.VERSION; 
    29  
    3029import com.romraider.editor.ecu.ECUEditor; 
    3130import com.romraider.logger.ecu.EcuLogger; 
  • trunk/src/com/romraider/swing/ECUEditorToolBar.java

    r229 r234  
    11/* 
    22 * RomRaider Open-Source Tuning, Logging and Reflashing 
    3  * Copyright (C) 2006-2008 RomRaider.com 
     3 * Copyright (C) 2006-2009 RomRaider.com 
    44 * 
    55 * This program is free software; you can redistribute it and/or modify 
     
    3434public class ECUEditorToolBar extends JToolBar implements ActionListener { 
    3535 
    36         private static final long serialVersionUID = 7778170684606193919L; 
    37         private ECUEditor parent; 
     36    private static final long serialVersionUID = 7778170684606193919L; 
     37    private ECUEditor parent; 
    3838