XmlSchemaCollection xsc = new XmlSchemaCollection();
XmlSchema xs1 = xsc.read(schemaDoc1.getDocumentElement());
schema.setSchemaDefinition(xs1);
URI schemaNS = URI.create("http://www.sample.org");
schema.setNamespace(schemaNS);
typesElement.addSchema(schema);
QName elemQN = new QName("http://www.sample.org","myElement");
fMessageReferenceElement.setElement(new QNameTokenUnion(elemQN));
ElementDeclaration elemDecl = msgRef.getElementDeclaration();