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

net.sf.jxls.sample.model.Department Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package net.sf.jxls.sample.model;

import java.util.ArrayList;
import java.util.List;

/**
 * Sample Department bean to demostrate main excel export features
 * author: Leonid Vysochyn
 */
public class Department {
    private String name;
    private Employee chief;
    private List staff = new ArrayList();

    public Department(String name) {
        this.name = name;
    }

    public Department(String name, Employee chief, List staff) {
        this.name = name;
        this.chief = chief;
        this.staff = staff;
    }

    public void addEmployee(Employee employee) {
        staff.add(employee);
    }

    public String getName() {
        return name;
    }

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

    public Employee getChief() {
        return chief;
    }

    public void setChief(Employee chief) {
        this.chief = chief;
    }

    public List getStaff() {
        return staff;
    }

    public void setStaff(List staff) {
        this.staff = staff;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy