basic pdf template lib

This commit is contained in:
jomu
2016-05-01 21:57:35 +00:00
parent 8fe4588555
commit 691d2d09fc

View File

@ -0,0 +1,26 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package de.muehlencord.shared.pdf;
/**
*
* @author jomu
*/
public enum PaperSize {
A4("A4");
private String label;
private PaperSize(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
}