package xadl; import java.util.ArrayList; public class Architecture { public Architecture() { } public String name =""; public Topology topology=new Topology(); /** Components or Connectors implement the "Attachable" interface and can be contained in 'attachables" list **/ public ArrayList attachables = new ArrayList(); }