Add Source Code Linter Pipeline

This commit is contained in:
Siwat Sirichai 2020-10-29 16:38:56 +07:00
parent 0d0e7140c4
commit d252f6ef50
313 changed files with 36277 additions and 0 deletions

View file

@ -0,0 +1,40 @@
package +zoccolo+.web.model.utility;
import org.apache.log4j.Logger;
public class Notice {
/** ordinary logger */
@SuppressWarnings("unused")
private static final Logger logger = Logger.getLogger(
Notice.class);
/** proprietà  del bean */
private String screwFormattedText;
/** proprietà  del bean */
private String screwFreeText;
/** standard get method */
public String getScrewFreeText() {
return screwFreeText;
}
/** standard set method, argument String */
public void setScrewFreeText(String screwFreeText) {
this.screwFreeText = screwFreeText;
}
/** standard get method */
public String getScrewFormattedText() {
return this.screwFormattedText;
}
/** standard set method, argument String */
public void setScrewFormattedText(String s) {
this.screwFormattedText = s;
}
/* screwdriver_knife */
}