00001 /* 00002 * DefaultVariable.java 00003 * 00004 * Created on 06 November 2003, 15:02 00005 */ 00006 00007 package SctData; 00008 00013 public class DefaultVariable extends ConfigurationVariable { 00014 00016 public DefaultVariable(short rep) { 00017 super("Unknown variable", "Used to when there is no known ConfigurationVariable"); 00018 repVal = rep; 00019 } 00020 00021 }