当前位置: 首页>>代码示例>>Java>>正文


Java XmlRegistryWriter类代码示例

本文整理汇总了Java中com.sun.tools.internal.xjc.generator.annotation.spec.XmlRegistryWriter的典型用法代码示例。如果您正苦于以下问题:Java XmlRegistryWriter类的具体用法?Java XmlRegistryWriter怎么用?Java XmlRegistryWriter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


XmlRegistryWriter类属于com.sun.tools.internal.xjc.generator.annotation.spec包,在下文中一共展示了XmlRegistryWriter类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ObjectFactoryGeneratorImpl

import com.sun.tools.internal.xjc.generator.annotation.spec.XmlRegistryWriter; //导入依赖的package包/类
public ObjectFactoryGeneratorImpl( BeanGenerator outline, Model model, JPackage targetPackage ) {
    this.outline = outline;
    this.model = model;
    this.codeModel = this.model.codeModel;
    this.classRef = codeModel.ref(Class.class);

    // create the ObjectFactory class skeleton
    objectFactory = this.outline.getClassFactory().createClass(
            targetPackage, "ObjectFactory", null );
    objectFactory.annotate2(XmlRegistryWriter.class);

    // generate the default constructor
    //
    // m1 result:
    //        public ObjectFactory() {}
    JMethod m1 = objectFactory.constructor(JMod.PUBLIC);
    m1.javadoc().append("Create a new ObjectFactory that can be used to " +
                     "create new instances of schema derived classes " +
                     "for package: " + targetPackage.name());

    // add some class javadoc
    objectFactory.javadoc().append(
        "This object contains factory methods for each \n" +
        "Java content interface and Java element interface \n" +
        "generated in the " + targetPackage.name() + " package. \n" +
        "<p>An ObjectFactory allows you to programatically \n" +
        "construct new instances of the Java representation \n" +
        "for XML content. The Java representation of XML \n" +
        "content can consist of schema derived interfaces \n" +
        "and classes representing the binding of schema \n" +
        "type definitions, element declarations and model \n" +
        "groups.  Factory methods for each of these are \n" +
        "provided in this class." );

}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:36,代码来源:ObjectFactoryGeneratorImpl.java


注:本文中的com.sun.tools.internal.xjc.generator.annotation.spec.XmlRegistryWriter类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。