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

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

?? dataselectorconfiguration.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.21 at 05:25:46 PM CEST 
//


package org.fosstrak.reader.rp.proxy.configurator;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for DataSelectorConfiguration complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="DataSelectorConfiguration">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;choice maxOccurs="unbounded">
 *         &lt;element name="fieldNames" minOccurs="0">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence maxOccurs="unbounded">
 *                   &lt;element name="fieldName" type="{}FieldName"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *         &lt;element name="eventFilters" minOccurs="0">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence maxOccurs="unbounded">
 *                   &lt;element name="eventFilter" type="{}EventFilter"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *         &lt;element name="tagFields" minOccurs="0">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence maxOccurs="unbounded">
 *                   &lt;element name="tagField" type="{}TagField"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *       &lt;/choice>
 *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataSelectorConfiguration", propOrder = {
    "fieldNamesOrEventFiltersOrTagFields"
})
public class DataSelectorConfiguration {

    @XmlElements({
        @XmlElement(name = "tagFields", type = TagFields.class),
        @XmlElement(name = "eventFilters", type = EventFilters.class),
        @XmlElement(name = "fieldNames", type = FieldNames.class)
    })
    protected List<Object> fieldNamesOrEventFiltersOrTagFields;
    @XmlAttribute(required = true)
    protected String name;

    /**
     * Gets the value of the fieldNamesOrEventFiltersOrTagFields 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 fieldNamesOrEventFiltersOrTagFields property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getFieldNamesOrEventFiltersOrTagFields().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link TagFields }
     * {@link EventFilters }
     * {@link FieldNames }
     * 
     * 
     */
    public List<Object> getFieldNamesOrEventFiltersOrTagFields() {
        if (fieldNamesOrEventFiltersOrTagFields == null) {
            fieldNamesOrEventFiltersOrTagFields = new ArrayList<Object>();
        }
        return this.fieldNamesOrEventFiltersOrTagFields;
    }

    /**
     * Gets the value of the name property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the value of the name property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setName(String value) {
        this.name = value;
    }


    /**
     * <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 maxOccurs="unbounded">
     *         &lt;element name="eventFilter" type="{}EventFilter"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "eventFilter"
    })
    public static class EventFilters {

        protected List<EventFilter> eventFilter;

        /**
         * Gets the value of the eventFilter 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 eventFilter property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getEventFilter().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link EventFilter }
         * 
         * 
         */
        public List<EventFilter> getEventFilter() {
            if (eventFilter == null) {
                eventFilter = new ArrayList<EventFilter>();
            }
            return this.eventFilter;
        }

    }


    /**
     * <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 maxOccurs="unbounded">
     *         &lt;element name="fieldName" type="{}FieldName"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "fieldName"
    })
    public static class FieldNames {

        protected List<FieldName> fieldName;

        /**
         * Gets the value of the fieldName 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 fieldName property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getFieldName().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link FieldName }
         * 
         * 
         */
        public List<FieldName> getFieldName() {
            if (fieldName == null) {
                fieldName = new ArrayList<FieldName>();
            }
            return this.fieldName;
        }

    }


    /**
     * <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 maxOccurs="unbounded">
     *         &lt;element name="tagField" type="{}TagField"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "tagField"
    })
    public static class TagFields {

        protected List<TagField> tagField;

        /**
         * Gets the value of the tagField 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 tagField property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getTagField().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link TagField }
         * 
         * 
         */
        public List<TagField> getTagField() {
            if (tagField == null) {
                tagField = new ArrayList<TagField>();
            }
            return this.tagField;
        }

    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品国产三级国产a久久| 一区二区三区加勒比av| 91麻豆精品秘密| 狠狠网亚洲精品| 亚洲va欧美va人人爽午夜| 国产精品毛片a∨一区二区三区 | 狠狠网亚洲精品| 日韩电影一二三区| 六月丁香婷婷久久| 国产精品2024| 成人精品小蝌蚪| 91色porny| 国产盗摄一区二区| 色呦呦国产精品| 欧美三级乱人伦电影| 欧美日韩激情在线| 91精品啪在线观看国产60岁| 91精品国模一区二区三区| 欧美一区二区三区免费| 欧美精品一区二区三区蜜桃视频 | 国产在线精品一区二区不卡了| 美国十次综合导航| 成人国产亚洲欧美成人综合网| 波多野结衣中文一区| 欧美日本高清视频在线观看| 久久美女艺术照精彩视频福利播放| 欧美经典三级视频一区二区三区| 久久99精品久久久久久| 亚洲精品视频在线观看网站| 亚洲v中文字幕| 99久久99久久精品免费观看| 欧美三级电影在线观看| 中文字幕在线一区免费| 午夜在线电影亚洲一区| 国产激情视频一区二区三区欧美| 色婷婷狠狠综合| 国产精品久久久久久久久搜平片| 午夜精品福利一区二区三区av| 激情国产一区二区| 精品视频免费在线| 亚洲欧洲精品一区二区三区不卡| 日韩中文字幕区一区有砖一区| 激情文学综合网| 精品久久一二三区| 日韩一区在线看| 国内精品久久久久影院色| 亚洲一区二区精品3399| 久久99精品一区二区三区三区| 成人中文字幕在线| 天堂av在线一区| 欧美日韩国产一级片| 精品国产自在久精品国产| 一级精品视频在线观看宜春院 | 国产精品看片你懂得| 日韩成人dvd| 日韩一级片在线播放| 久久成人麻豆午夜电影| 久久品道一品道久久精品| 奇米色一区二区三区四区| 精品国产乱码91久久久久久网站| 美女在线观看视频一区二区| 精品欧美一区二区三区精品久久 | 日本一区二区三级电影在线观看| 国产精品一区二区久久不卡| 国产色综合久久| 91免费在线看| 国产一区二区按摩在线观看| 亚洲视频小说图片| 亚洲精品在线三区| 91网址在线看| 日本亚洲视频在线| 一级日本不卡的影视| 欧美高清在线精品一区| 欧美性视频一区二区三区| 韩国精品在线观看| 亚洲狠狠爱一区二区三区| 欧美成人一级视频| 日韩一区二区高清| 精品视频一区三区九区| 成人午夜精品一区二区三区| 国内精品嫩模私拍在线| 久久精品国产秦先生| 午夜精品福利在线| 日本不卡123| 久久超碰97人人做人人爱| 亚洲国产欧美在线| 午夜精品久久一牛影视| 午夜视频一区二区三区| 午夜精品视频一区| 久久99深爱久久99精品| 久久99久国产精品黄毛片色诱| 亚洲国产精品黑人久久久| 欧美顶级少妇做爰| 日韩欧美一级二级三级久久久| 懂色一区二区三区免费观看| 久久精品久久99精品久久| 亚洲一区二区三区爽爽爽爽爽| 国产一区二区三区观看| 在线播放中文一区| 日韩欧美在线不卡| 亚洲成人资源在线| 国产欧美久久久精品影院| 91精品国产一区二区人妖| 精品福利一二区| 一区二区三区视频在线观看| 亚洲激情六月丁香| 奇米色777欧美一区二区| 99精品视频免费在线观看| 色综合中文字幕国产 | 麻豆精品精品国产自在97香蕉| 亚洲色图欧洲色图婷婷| 激情综合一区二区三区| 国产精品一级二级三级| 国产精品18久久久久久vr| 在线观看视频91| 国产精品久久影院| 国产原创一区二区三区| 精品久久久久久最新网址| 亚洲精品写真福利| 在线视频欧美精品| 一区二区久久久久| 日本高清不卡视频| 首页亚洲欧美制服丝腿| 精品婷婷伊人一区三区三| 精品国产自在久精品国产| 久久99国产精品久久| 91精品国产福利在线观看| 亚洲品质自拍视频| 91久久线看在观草草青青| 亚洲日本在线视频观看| 欧美在线制服丝袜| 亚洲一区av在线| 67194成人在线观看| 午夜精品久久久久久久| 在线电影国产精品| 国产美女主播视频一区| 国产精品国产三级国产aⅴ无密码| 成人福利电影精品一区二区在线观看| 国产日韩精品久久久| 色婷婷亚洲一区二区三区| 三级在线观看一区二区| 欧美巨大另类极品videosbest| 欧洲精品一区二区| 欧美顶级少妇做爰| 国产精品综合视频| 秋霞影院一区二区| 亚洲免费av高清| 国产无人区一区二区三区| 欧美视频自拍偷拍| 国产.欧美.日韩| 久国产精品韩国三级视频| 亚洲视频在线观看三级| xvideos.蜜桃一区二区| 欧美视频三区在线播放| 粉嫩一区二区三区性色av| 天堂va蜜桃一区二区三区| 亚洲精品菠萝久久久久久久| 久久精品日韩一区二区三区| 欧美精品123区| 欧美日韩国产色站一区二区三区| 不卡av免费在线观看| 成人一区二区三区在线观看 | 国产精品99久久久久久久女警| 亚洲黄色小视频| 亚洲成人av福利| 香蕉久久一区二区不卡无毒影院 | 日韩精品一区二区三区swag| 678五月天丁香亚洲综合网| 国产亚洲女人久久久久毛片| 亚洲一二三专区| 精品无人码麻豆乱码1区2区| 国产成人免费在线| 欧美精品高清视频| 国产成人av资源| 欧美精品日韩精品| 亚洲日本在线视频观看| 狠狠网亚洲精品| 日韩西西人体444www| 亚洲免费色视频| 成人中文字幕合集| 欧美人成免费网站| 亚洲大片一区二区三区| 国产欧美日韩另类视频免费观看 | 成人av在线一区二区三区| 国产日韩欧美在线一区| 91一区二区三区在线观看| 日韩二区三区四区| 亚洲男同1069视频| 精品国产免费人成电影在线观看四季| 国产一区999| 亚洲黄色片在线观看| 久久先锋资源网| 91精品国产综合久久精品麻豆 | 欧美精品一卡二卡| eeuss国产一区二区三区| 国内国产精品久久| 久久精品国产一区二区| 日韩电影免费在线看| 亚洲一区二区影院| 亚洲欧美日本韩国|