irt-parser/src/main/java/de/swingbe/ifleet/model/TelegrCntnt.java

16 lines
350 B
Java

package de.swingbe.ifleet.model;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TelegrCntnt {
private final static Logger LOG = LoggerFactory.getLogger(TelegrCntnt.class);
private final String type;
public TelegrCntnt(String type) {
LOG.debug("parse() type: " + type);
this.type = type;
}
}