MCPcopy Create free account
hub / github.com/annmuor/jnode / ScriptHelper

Class ScriptHelper

jnode-core/src/jnode/dto/ScriptHelper.java:32–55  ·  view source on GitHub ↗

Хелперы - для внешних модулей @author kreon

Source from the content-addressed store, hash-verified

30 *
31 */
32@DatabaseTable(tableName = "scripthelpers")
33public class ScriptHelper {
34 @DatabaseField(id = true, columnName = "helper")
35 private String id;
36 @DatabaseField(columnName = "className", canBeNull = false)
37 private String className;
38
39 public String getId() {
40 return id;
41 }
42
43 public void setId(String id) {
44 this.id = id;
45 }
46
47 public String getClassName() {
48 return className;
49 }
50
51 public void setClassName(String className) {
52 this.className = className;
53 }
54
55}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected