
jdplus.toolkit.desktop.plugin.ui.properties.l2fprod.Holidays Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jdplus.toolkit.desktop.plugin.ui.properties.l2fprod;
import jdplus.toolkit.base.api.timeseries.calendars.CalendarManager;
/**
*
* @author Jean Palate
*/
public class Holidays {
private final String name_;
public Holidays(String name) {
if (name != null) {
this.name_ = name;
}
else {
this.name_ = CalendarManager.DEF;
}
}
public String getName() {
return name_;
}
@Override
public String toString() {
return name_;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy