Java XMLStreamWriter addObjectId(final XMLStreamWriter writer, final String objId)

Here you can find the source of addObjectId(final XMLStreamWriter writer, final String objId)

Description

Adds the provided object id to the XMLStreamWriter that has been provided.
The object id is added as the attribute "objid".

License

Open Source License

Parameter

Parameter Description
writer The XMLStreamWriter object to add the attribute to.
objId The object id to add.

Exception

Parameter Description
XMLStreamException Thrown in case of an xml stream error.

Declaration

public static void addObjectId(final XMLStreamWriter writer, final String objId) throws XMLStreamException 

Method Source Code

//package com.java2s;
/*//from   w  w  w. j  a v a  2s.  c o m
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the Common Development and Distribution License, Version 1.0
 * only (the "License"). You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at license/ESCIDOC.LICENSE or http://www.escidoc.de/license. See the License for
 * the specific language governing permissions and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each file and include the License file at
 * license/ESCIDOC.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by
 * brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 *
 * Copyright 2006-2011 Fachinformationszentrum Karlsruhe Gesellschaft fuer wissenschaftlich-technische Information mbH
 * and Max-Planck-Gesellschaft zur Foerderung der Wissenschaft e.V. All rights reserved. Use is subject to license
 * terms.
 */

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

public class Main {
    /**
     * Adds the provided object id to the {@code XMLStreamWriter} that has been provided.<br> The object id is
     * added as the attribute "objid".
     *
     * @param writer The {@code XMLStreamWriter} object to add the attribute to.
     * @param objId  The object id to add.
     * @throws XMLStreamException Thrown in case of an xml stream error.
     */
    public static void addObjectId(final XMLStreamWriter writer, final String objId) throws XMLStreamException {

        writer.writeAttribute("objid", objId);
    }
}

Related

  1. CloseNewHTML(XMLStreamWriter serializer)
  2. closeQuietly(XMLStreamWriter c)
  3. copy(Reader reader, XMLStreamWriter xmlStreamWriter)
  4. CreateColumn(XMLStreamWriter serializer, String w, String h)