ID connectedID = container.getConnectedID();
if (connectedID != null) {
interpreter.print("\tConnected to: ");
printID(interpreter, connectedID);
} else interpreter.println("\tNot connected.");
Namespace ns = container.getConnectNamespace();
if (ns != null) {
interpreter.print("\tConnect namespace: ");
interpreter.println(ns.getName());
} else interpreter.println("\tNo connect namespace.");
ContainerTypeDescription desc = getContainerManager().getContainerTypeDescription(container.getID());
if (desc != null) printDescription(interpreter, desc);
}
interpreter.println("--End Container--");