package org.frasermccrossan.ltc; public class LTCDirection { public Integer number; public String name; LTCDirection(Integer number, String name) { this.number = number.intValue(); this.name = name; } }