generator.setBinding("jaxb");
generator.setBaseURI(getTestFilePath("src/wsdl/import-test/"));
generator.setOverwrite(true);
generator.generate();
JCodeModel model = generator.getCodeModel();
JDefinedClass concat = model._getClass("org.codehaus.xfire.generator.messagepart.concatPortType");
assertNotNull(concat);
JType string = model._ref(String.class);
JMethod method = concat.getMethod("concat", new JType[] { string, string });
// if there were a way to look at the annotations we would do that here.
}