Add Source Code Linter Pipeline
This commit is contained in:
parent
0d0e7140c4
commit
d252f6ef50
313 changed files with 36277 additions and 0 deletions
40
screwdriver-3.5.6/box/snippets/java/Notice.java
Normal file
40
screwdriver-3.5.6/box/snippets/java/Notice.java
Normal 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 */
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue