All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.qdbp.staticize.parse.AttrData Maven / Gradle / Ivy

There is a newer version: 3.5.18
Show newest version
package com.gitee.qdbp.staticize.parse;

import com.gitee.qdbp.able.beans.KeyValue;

/**
 * 标签属性数据
 *
 * @author zhaohuihua
 * @version 160407
 */
public class AttrData extends KeyValue {

    /** serialVersionUID **/
    private static final long serialVersionUID = 1L;

    /** 构造函数 **/
    public AttrData() {
    }

    /**
     * 构造函数
     *
     * @param key KEY
     * @param value VALUE
     */
    public AttrData(String key, Object value) {
        super(key, value);
    }
}