Added getName to fillerSet

This commit is contained in:
Francesco Macagno 2015-08-23 02:04:33 -07:00
parent 1e742ac68d
commit c92e32b96d

View file

@ -26,6 +26,14 @@ public class FillerSet implements XmlRepresentable, Comparable {
private FillerFactory factory;
private String name;
/**
* @return the name
*/
public String getName() {
return name;
}
public FillerSet(MetaBlock[] blocks) {
weightedFillerBlocks = blocks;
}