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

com.fastchar.extjs.core.enums.FastEnumInfo Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.fastchar.extjs.core.enums;

import com.fastchar.core.FastBaseInfo;

public class FastEnumInfo extends FastBaseInfo {
    private static final long serialVersionUID = 1443478881929662576L;
    private int id;
    private String text;

    public int getId() {
        return id;
    }

    public FastEnumInfo setId(int id) {
        this.id = id;
        put("id", id);
        return this;
    }

    public String getText() {
        return text;
    }

    public FastEnumInfo setText(String text) {
        this.text = text;
        put("text", text);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy