< prev index next >

src/java.xml.bind/share/classes/com/sun/xml/internal/bind/api/JAXBRIContext.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 268,283 **** * <p> * The caller can use the additionalElementDecls parameter to * add element declarations to the generate schema. * For example, if the JAX-RPC passes in the following entry: * ! * {foo}bar -> DeclaredType for java.lang.String * * then JAXB generates the following element declaration (in the schema * document for the namespace "foo")" * ! * &lt;xs:element name="bar" type="xs:string" /> * * This can be used for generating schema components necessary for WSDL. * * @param outputResolver * this object controls the output to which schemas --- 268,283 ---- * <p> * The caller can use the additionalElementDecls parameter to * add element declarations to the generate schema. * For example, if the JAX-RPC passes in the following entry: * ! * {@code {foo}bar -> DeclaredType for java.lang.String} * * then JAXB generates the following element declaration (in the schema * document for the namespace "foo")" * ! * {@code <xs:element name="bar" type="xs:string" />} * * This can be used for generating schema components necessary for WSDL. * * @param outputResolver * this object controls the output to which schemas
*** 434,444 **** /** * The property that you can specify to {@link JAXBContext#newInstance} * to put additional JAXB type references into the {@link JAXBContext}. * * <p> ! * The value of the property is {@link Collection}&lt;{@link TypeReference}>. * Those {@link TypeReference}s can then be used to create {@link Bridge}s. * * <p> * This mechanism allows additional element declarations that were not a part of * the schema into the created {@link JAXBContext}. --- 434,444 ---- /** * The property that you can specify to {@link JAXBContext#newInstance} * to put additional JAXB type references into the {@link JAXBContext}. * * <p> ! * The value of the property is {@link Collection}{@code <}{@link TypeReference}{@code >}. * Those {@link TypeReference}s can then be used to create {@link Bridge}s. * * <p> * This mechanism allows additional element declarations that were not a part of * the schema into the created {@link JAXBContext}.
*** 451,461 **** * The property that you can specify to {@link JAXBContext#newInstance} * and {@link Marshaller#setProperty(String, Object)} * to enable the c14n marshalling support in the {@link JAXBContext}. * * Boolean - * @see C14nSupport_ArchitectureDocument * @since 2.0 EA2 */ public static final String CANONICALIZATION_SUPPORT = "com.sun.xml.internal.bind.c14n"; /** --- 451,460 ----
< prev index next >