* Loads this instance of design with the XDL design found in
* the file fileName.
* @param fileName The name of the XDL file to load.
*/
public void loadXDLFile(String fileName){
DesignParser parser = new DesignParser(fileName);
parser.setDesign(this);
parser.parseXDL();
}