Added toString method for gates.

This commit is contained in:
Tobias Ottenweller 2013-02-26 14:17:01 +01:00
parent 3a7be837b5
commit b99ecec448

View File

@ -58,6 +58,12 @@ public class Gate extends BaseGate implements ConfigurationSerializable
}
public String toString()
{
return super.toString() + " " + this.getId();
}
/*
* INTERFACE: ConfigurationSerializable
*/