blob: 5dbdd92e078f562407c14982c506504ca04c70e7 [file] [log] [blame]
/*
* Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.jaxb.runtime.v2.runtime.reflect.opt;
import org.glassfish.jaxb.runtime.DatatypeConverterImpl;
import org.glassfish.jaxb.runtime.api.AccessorException;
import org.glassfish.jaxb.runtime.v2.runtime.Name;
import org.glassfish.jaxb.runtime.v2.runtime.XMLSerializer;
import org.glassfish.jaxb.runtime.v2.runtime.reflect.DefaultTransducedAccessor;
import org.glassfish.jaxb.runtime.v2.runtime.reflect.TransducedAccessor;
import org.xml.sax.SAXException;
import javax.xml.stream.XMLStreamException;
import java.io.IOException;
/**
* Template {@link TransducedAccessor} for a byte field.
*
* <p>
* All the TransducedAccessor_field are generated from <code>TransducedAccessor_field_B y t e</code>
*
* @author Kohsuke Kawaguchi
*
* @see TransducedAccessor#get
*/
public final class TransducedAccessor_field_Integer extends DefaultTransducedAccessor {
public String print(Object o) {
return DatatypeConverterImpl._printInt( ((Bean)o).f_int );
}
public void parse(Object o, CharSequence lexical) {
((Bean)o).f_int=DatatypeConverterImpl._parseInt(lexical);
}
public boolean hasValue(Object o) {
return true;
}
@Override
public void writeLeafElement(XMLSerializer w, Name tagName, Object o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
w.leafElement(tagName, ((Bean)o).f_int, fieldName );
}
}