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

jchanghong.lang.TestBean1 Maven / Gradle / Ivy

There is a newer version: 3.0.38
Show newest version
package jchanghong.lang;

import java.util.Date;

public class TestBean1 {
    Long aLong;
    String string;
    Date date;

    public Long getaLong() {
        return aLong;
    }

    public void setaLong(Long aLong) {
        this.aLong = aLong;
    }

    public String getString() {
        return string;
    }

    public void setString(String string) {
        this.string = string;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy