return;
}
for(File iface : interfaceFiles) {
FileStreamFactory factory = new FileStreamFactory(path);
CreateInterface createInterface = new CreateInterface(factory, false);
FileReader input = null;
try {
input = new FileReader(iface);
} catch (IOException e) {
throw new MojoExecutionException("Could not read interface " +
"XML from " + iface.getPath(), e);
}
try {
createInterface.createInterface(input);
} catch (ParserConfigurationException e) {
throw new MojoExecutionException("dbus-java internal error on XML parser", e);
} catch (SAXException e) {
throw new MojoExecutionException("Malformatted interface XML", e);
} catch (IOException e) {