JAXB:将自己的类导入生成的类

发布于 2024-11-05 11:38:37 字数 814 浏览 0 评论 0原文

我正在使用 JAXB 2.2,但遇到了一些麻烦。

我的 xsd 中有以下 XML:

<xs:complexType name="Party" abstract="true">
    <xs:annotation>
        <xs:appinfo>
            <ci:code>
                public ElectronicAddress
                getFirstPrimaryElectronicAddressPhone() {
                for (ElectronicAddress
                eAddress : electronicAddresses) {
                if (checkRefCodeTypeCode(eAddress,
                CodeHelper.ADDRTYPEELECORG_PHONE_CODE,
                CodeHelper.ADDRTYPEELECPERS_PHONE_CODE)) {
                return eAddress;
                }
                }
                return
                null;
                }
          [...]

现在,我需要将自己的 (CodeHelper) 类导入到生成的类中,因为 CodeHelper 与生成的源不在同一包中。

有可能这样做吗?

谢谢!

I'm using JAXB 2.2 and I'm into some trouble.

I have the following XML in my xsd:

<xs:complexType name="Party" abstract="true">
    <xs:annotation>
        <xs:appinfo>
            <ci:code>
                public ElectronicAddress
                getFirstPrimaryElectronicAddressPhone() {
                for (ElectronicAddress
                eAddress : electronicAddresses) {
                if (checkRefCodeTypeCode(eAddress,
                CodeHelper.ADDRTYPEELECORG_PHONE_CODE,
                CodeHelper.ADDRTYPEELECPERS_PHONE_CODE)) {
                return eAddress;
                }
                }
                return
                null;
                }
          [...]

Now, I need to import my own (CodeHelper) class into the generated class, because CodeHelper is not in the same package as the generated source.

Is there any possibility to do that?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝礼 2024-11-12 11:38:37

您可以编写一个 XJC 插件来实现此行为。下面的链接提供了一些创建插件的指示:

上面文章中的例子实际上是一个代码注入器插件。

You could possibly write an XJC plugin to get this behaviour. The link below has some pointers for creating a plugin:

The example in the above article is actually a code injector plug-in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文