rusefi/java_console/inifile/src/main/java/com/rusefi/tune/xml/Bibliography.java

29 lines
574 B
Java
Raw Normal View History

2020-05-16 17:01:34 -07:00
package com.rusefi.tune.xml;
import com.rusefi.core.rusEFIVersion;
2021-01-26 13:08:00 -08:00
2020-05-16 17:01:34 -07:00
import javax.xml.bind.annotation.XmlAttribute;
public class Bibliography {
private String tuneComment = null;
2020-05-16 17:01:34 -07:00
@XmlAttribute
public String getAuthor() {
2021-01-26 13:08:00 -08:00
return "rusEFI " + rusEFIVersion.CONSOLE_VERSION;
2020-05-16 17:01:34 -07:00
}
@XmlAttribute
public String getTuneComment() {
return tuneComment;
}
public void setTuneComment(String tuneComment) {
this.tuneComment = tuneComment;
2020-05-16 17:01:34 -07:00
}
@XmlAttribute
public String getWriteDate() {
return "date";
}
}