⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attribute.java

📁 java反编译
💻 JAVA
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) 
// Source File Name:   Attribute.java

package com.heaton.bot;


public class Attribute
    implements Cloneable
{

    public Object clone()
    {
        return new Attribute(name, value, delim);
    }

    public Attribute(String name, String value, char delim)
    {
        this.name = name;
        this.value = value;
        this.delim = delim;
    }

    public Attribute()
    {
        this("", "", '\0');
    }

    public Attribute(String name, String value)
    {
        this(name, value, '\0');
    }

    public String getName()
    {
        return name;
    }

    public String getValue()
    {
        return value;
    }

    public char getDelim()
    {
        return delim;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public void setValue(String value)
    {
        this.value = value;
    }

    public void setDelim(char ch)
    {
        delim = ch;
    }

    private String name;
    private String value;
    private char delim;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -