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

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