package xadl; /** Base class for both Components and Connectors To the Architecture, Components and Connectors appear identically as "AttachableBrick" => Brick is C2 architecture terminology **/ public class AttachableBrick { public boolean running = false; public String supports = ""; public String name = ""; }