Skip to content

Commit b8a8259

Browse files
committed
Added checksum correction and infos panel
1 parent 6259525 commit b8a8259

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: CarItem.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package DTCController;
2+
3+
public class CarItem {
4+
5+
CarItem(String name,String software,String ecuRef) {
6+
this.name = name;
7+
this.software = software;
8+
this.ecuRef = ecuRef;
9+
}
10+
String name;
11+
String software;
12+
String ecuRef;
13+
14+
@Override
15+
public String toString() {
16+
return software + ":" + name + " (" + ecuRef + ")";
17+
}
18+
19+
}

0 commit comments

Comments
 (0)