亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? readreporttype.java

?? 關于 RFID 讀寫器的相關內容
?? JAVA
字號:
/*
 * Copyright (C) 2007 ETH Zurich
 *
 * This file is part of Fosstrak (www.fosstrak.org).
 *
 * Fosstrak is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software Foundation.
 *
 * Fosstrak is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Fosstrak; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2006.07.05 at 04:25:04 PM CEST 
//


package org.fosstrak.reader.rprm.core.msg.notification;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlType;

import org.fosstrak.reader.rprm.core.msg.notification.ReadReportType;
import org.fosstrak.reader.rprm.core.msg.notification.SourceInfoType;
import org.fosstrak.reader.rprm.core.msg.notification.TagType;
import org.fosstrak.reader.rprm.core.msg.notification.ReadReportType.SourceReport;
import org.w3c.dom.Element;


/**
 * A read report - It has one section per source.
 *                 Alternatively it can be nstructed as just as a set of tags with no source
 *                 information. It can have endor defined data specific to source or common to the
 *                 whole report. 
 * 
 * <p>Java class for ReadReportType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="ReadReportType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;choice>
 *           &lt;element name="tag" type="{urn:epcglobal:rp:xsd:1}TagType" maxOccurs="unbounded" minOccurs="0"/>
 *           &lt;element name="sourceReport" maxOccurs="unbounded">
 *             &lt;complexType>
 *               &lt;complexContent>
 *                 &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                   &lt;sequence>
 *                     &lt;element name="sourceInfo" type="{urn:epcglobal:rp:xsd:1}SourceInfoType"/>
 *                     &lt;element name="tag" type="{urn:epcglobal:rp:xsd:1}TagType" maxOccurs="unbounded" minOccurs="0"/>
 *                     &lt;any/>
 *                   &lt;/sequence>
 *                 &lt;/restriction>
 *               &lt;/complexContent>
 *             &lt;/complexType>
 *           &lt;/element>
 *         &lt;/choice>
 *         &lt;any/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReadReportType", propOrder = {
    "tag",
    "sourceReport",
    "any"
})
public class ReadReportType {

    protected List<TagType> tag;
    protected List<SourceReport> sourceReport;
    @XmlAnyElement(lax = true)
    protected List<Object> any;

    /**
     * Gets the value of the tag property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the tag property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getTag().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link TagType }
     * 
     * 
     */
    public List<TagType> getTag() {
        if (tag == null) {
            tag = new ArrayList<TagType>();
        }
        return this.tag;
    }

    /**
     * Gets the value of the sourceReport property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the sourceReport property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getSourceReport().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link SourceReport }
     * 
     * 
     */
    public List<SourceReport> getSourceReport() {
        if (sourceReport == null) {
            sourceReport = new ArrayList<SourceReport>();
        }
        return this.sourceReport;
    }

    /**
     * Gets the value of the any property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the any property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getAny().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link Element }
     * {@link Object }
     * 
     * 
     */
    public List<Object> getAny() {
        if (any == null) {
            any = new ArrayList<Object>();
        }
        return this.any;
    }


    /**
     * <p>Java class for anonymous complex type.
     * 
     * <p>The following schema fragment specifies the expected content contained within this class.
     * 
     * <pre>
     * &lt;complexType>
     *   &lt;complexContent>
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       &lt;sequence>
     *         &lt;element name="sourceInfo" type="{urn:epcglobal:rp:xsd:1}SourceInfoType"/>
     *         &lt;element name="tag" type="{urn:epcglobal:rp:xsd:1}TagType" maxOccurs="unbounded" minOccurs="0"/>
     *         &lt;any/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "sourceInfo",
        "tag",
        "any"
    })
    public static class SourceReport {

        protected SourceInfoType sourceInfo;
        protected List<TagType> tag;
        @XmlAnyElement(lax = true)
        protected List<Object> any;

        /**
         * Gets the value of the sourceInfo property.
         * 
         * @return
         *     possible object is
         *     {@link SourceInfoType }
         *     
         */
        public SourceInfoType getSourceInfo() {
            return sourceInfo;
        }

        /**
         * Sets the value of the sourceInfo property.
         * 
         * @param value
         *     allowed object is
         *     {@link SourceInfoType }
         *     
         */
        public void setSourceInfo(SourceInfoType value) {
            this.sourceInfo = value;
        }

        /**
         * Gets the value of the tag property.
         * 
         * <p>
         * This accessor method returns a reference to the live list,
         * not a snapshot. Therefore any modification you make to the
         * returned list will be present inside the JAXB object.
         * This is why there is not a <CODE>set</CODE> method for the tag property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getTag().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link TagType }
         * 
         * 
         */
        public List<TagType> getTag() {
            if (tag == null) {
                tag = new ArrayList<TagType>();
            }
            return this.tag;
        }

        /**
         * Gets the value of the any property.
         * 
         * <p>
         * This accessor method returns a reference to the live list,
         * not a snapshot. Therefore any modification you make to the
         * returned list will be present inside the JAXB object.
         * This is why there is not a <CODE>set</CODE> method for the any property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getAny().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link Element }
         * {@link Object }
         * 
         * 
         */
        public List<Object> getAny() {
            if (any == null) {
                any = new ArrayList<Object>();
            }
            return this.any;
        }

    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
2021中文字幕一区亚洲| 在线观看av一区二区| 欧美电影免费观看高清完整版在线 | 久久久精品欧美丰满| 国产一区二区三区在线看麻豆| 日韩欧美国产高清| 精品一区二区三区免费视频| 精品国精品国产| 国产激情视频一区二区三区欧美 | 欧美激情一区在线观看| 99视频一区二区| 亚洲黄一区二区三区| 9191成人精品久久| 国产麻豆精品视频| 亚洲欧美一区二区三区极速播放| 欧美日韩在线播放| 激情久久五月天| 亚洲天堂成人网| 337p亚洲精品色噜噜| 国产成人精品一区二区三区四区| 亚洲视频资源在线| 欧美一区二区精品在线| 粉嫩高潮美女一区二区三区| 亚洲一区二区三区免费视频| 精品人在线二区三区| 99国产精品久久久久久久久久 | 国产精品亚洲人在线观看| 亚洲国产精品成人久久综合一区| 欧美又粗又大又爽| 国产一区 二区| 一区二区三区加勒比av| 久久久久久久久久久99999| 色综合久久66| 国内精品久久久久影院一蜜桃| 亚洲色大成网站www久久九九| 欧美一级欧美三级在线观看| caoporn国产精品| 天天综合网天天综合色| 中文字幕日韩精品一区| 日韩精品一区二区三区老鸭窝| 91首页免费视频| 国产福利一区二区三区视频| 午夜久久久久久久久久一区二区| 久久久www成人免费无遮挡大片| 欧美亚洲愉拍一区二区| 成人a免费在线看| 麻豆精品在线播放| 亚洲一级电影视频| 久久精品一区四区| 日韩欧美激情一区| 欧美日韩三级视频| 成人午夜在线播放| 蜜桃视频免费观看一区| 亚洲国产视频一区| 亚洲欧美韩国综合色| 国产亚洲一区二区三区在线观看| 欧美精品亚洲二区| 欧美三片在线视频观看| 91精品91久久久中77777| 99国产欧美另类久久久精品| 国产99一区视频免费| 国产精品自拍av| 开心九九激情九九欧美日韩精美视频电影| 一区二区三区视频在线看| 中文字幕亚洲区| 国产欧美日韩麻豆91| 精品91自产拍在线观看一区| 欧美一区二区三区性视频| 欧美三级资源在线| 欧美日韩国产一级片| 色欧美片视频在线观看| 日本精品免费观看高清观看| 色综合久久综合网97色综合| 91蜜桃网址入口| 91亚洲精品乱码久久久久久蜜桃| 成人app在线| 成人激情校园春色| www.av精品| av一区二区三区| 91免费观看视频| 欧美制服丝袜第一页| 欧美最猛黑人xxxxx猛交| 91国模大尺度私拍在线视频| 日本伦理一区二区| 欧美高清精品3d| 欧美一区二区三区四区久久 | 福利电影一区二区三区| 国产精品中文有码| 国产69精品久久久久777| 国产麻豆欧美日韩一区| 成人激情综合网站| www.在线欧美| 色94色欧美sute亚洲线路一久 | 国产亚洲成年网址在线观看| 久久久久久麻豆| 日韩一区中文字幕| 亚洲美女少妇撒尿| 亚洲午夜精品一区二区三区他趣| 午夜欧美大尺度福利影院在线看| 日本91福利区| 奇米综合一区二区三区精品视频| 麻豆免费精品视频| 国产精品 欧美精品| 91丝袜美腿高跟国产极品老师| 91啪在线观看| 日韩一二三四区| 国产日韩欧美精品电影三级在线| 中文字幕永久在线不卡| 亚洲成a人片综合在线| 蜜臀av性久久久久蜜臀aⅴ| 国产在线国偷精品产拍免费yy| 成人av电影在线观看| 欧美午夜电影在线播放| 日韩欧美一区二区久久婷婷| 欧美国产精品久久| 香蕉成人伊视频在线观看| 国产一区二区三区综合| 91社区在线播放| 日韩三级精品电影久久久| 国产精品美女久久久久久久 | 亚洲高清免费观看| 国产一区二区三区免费看| 91色综合久久久久婷婷| 欧美精品久久天天躁| 久久久国产精华| 午夜精品123| 成人av在线电影| 欧美日韩精品专区| 国产视频一区在线播放| 亚洲综合网站在线观看| 久久精品国产亚洲高清剧情介绍 | 午夜在线成人av| 国产传媒欧美日韩成人| 欧美日韩一区二区三区视频| 国产免费久久精品| 美国三级日本三级久久99| 欧洲精品在线观看| 中文字幕制服丝袜成人av| 精品一二三四在线| 欧美日韩一级视频| **网站欧美大片在线观看| 激情文学综合丁香| 欧美一区三区四区| 亚洲综合色视频| 91在线精品一区二区| 久久久夜色精品亚洲| 蜜桃av一区二区三区| 日本韩国欧美在线| 亚洲欧洲成人自拍| 国产a精品视频| 国产午夜久久久久| 久88久久88久久久| 91精品欧美一区二区三区综合在| 亚洲精品免费一二三区| aaa亚洲精品| 中文字幕亚洲精品在线观看| 不卡视频免费播放| 国产精品久久免费看| 国产寡妇亲子伦一区二区| 亚洲精品一线二线三线无人区| 日韩vs国产vs欧美| 欧美一区二区黄| 日韩在线a电影| 欧美精选一区二区| 五月综合激情网| 欧美偷拍一区二区| 亚洲影视在线观看| 欧美日韩你懂的| 五月天一区二区三区| 欧美高清一级片在线| 蜜臀av一区二区在线免费观看| 在线播放日韩导航| 麻豆91精品视频| 26uuu亚洲| 高清视频一区二区| ...xxx性欧美| 欧美亚男人的天堂| 午夜精品视频一区| 日韩免费在线观看| 日本va欧美va精品| 久久久av毛片精品| 粉嫩aⅴ一区二区三区四区五区| 国产亚洲人成网站| 色综合中文字幕国产 | 亚洲精品国产a久久久久久| 99精品欧美一区二区三区小说| 中文字幕综合网| 欧美日韩国产不卡| 九九久久精品视频| 国产精品美女视频| 精品视频色一区| 久久精品国产免费看久久精品| 久久久国产精华| 色噜噜狠狠成人中文综合| 午夜成人在线视频| 久久免费美女视频| 91蜜桃在线免费视频| 免费在线欧美视频| 国产精品日韩成人| 欧美丝袜丝交足nylons图片|