public abstract class SchemaOutputResolver extends Object
该抽象类的实现必须由调用应用程序提供以生成模式。
这是一个类,而不是一个界面,以便将来的版本可以在不破坏兼容性的情况下发展。
Constructor and Description |
---|
SchemaOutputResolver() |
public abstract Result createOutput(String namespaceUri, String suggestedFileName) throws IOException
Result
对象返回。
对于任何给定的命名空间,此方法只调用一次。 IOW,一个命名空间中的所有组件总是写入同一个模式文档。
namespaceUri
- 模式声明的命名空间URI。
可以是空字符串,但不能为null。
suggestedFileName
- 为方便被调用者,JAXB实现生成唯一的文件名(如“schema1.xsd”)。
该名称可以用于模式的文件名,或者被叫者可以忽略此名称,并提出自己的名称。
这只是一个提示。
Result
对象封装了模式的实际目的地。
如果Result
对象具有系统ID,那么它必须是绝对的系统ID。
那些系统ID由调用者相对,并用于<xs:import>语句。
如果Result
对象没有系统ID,则会生成命名空间URI的模式,但不会从其他模式显式地显示<xs:import>。
如果null
返回,架构生成这个命名空间URI将被跳过。
IOException
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.