| 1 | package com.jsql.model.accessible.vendor.postgres; | |
| 2 | ||
| 3 | import org.apache.commons.lang3.StringUtils; | |
| 4 | ||
| 5 | import java.io.Serializable; | |
| 6 | ||
| 7 | public class Library implements Serializable { | |
| 8 | ||
| 9 | private String loFromText = StringUtils.EMPTY; | |
| 10 | private String loToFile = StringUtils.EMPTY; | |
| 11 | private String dropFunc = StringUtils.EMPTY; | |
| 12 | private String createFunction = StringUtils.EMPTY; | |
| 13 | private String runFunc = StringUtils.EMPTY; | |
| 14 | ||
| 15 | public String getDropFunc() { | |
| 16 |
1
1. getDropFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Library::getDropFunc → NO_COVERAGE |
return this.dropFunc; |
| 17 | } | |
| 18 | ||
| 19 | public void setDropFunc(String dropFunc) { | |
| 20 | this.dropFunc = dropFunc; | |
| 21 | } | |
| 22 | ||
| 23 | public String getCreateFunction() { | |
| 24 |
1
1. getCreateFunction : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Library::getCreateFunction → NO_COVERAGE |
return this.createFunction; |
| 25 | } | |
| 26 | ||
| 27 | public void setCreateFunction(String createFunction) { | |
| 28 | this.createFunction = createFunction; | |
| 29 | } | |
| 30 | ||
| 31 | public String getRunFunc() { | |
| 32 |
1
1. getRunFunc : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Library::getRunFunc → NO_COVERAGE |
return this.runFunc; |
| 33 | } | |
| 34 | ||
| 35 | public void setRunFunc(String runFunc) { | |
| 36 | this.runFunc = runFunc; | |
| 37 | } | |
| 38 | ||
| 39 | public String getLoFromText() { | |
| 40 |
1
1. getLoFromText : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Library::getLoFromText → NO_COVERAGE |
return this.loFromText; |
| 41 | } | |
| 42 | ||
| 43 | public void setLoFromText(String loFromText) { | |
| 44 | this.loFromText = loFromText; | |
| 45 | } | |
| 46 | ||
| 47 | public String getLoToFile() { | |
| 48 |
1
1. getLoToFile : replaced return value with "" for com/jsql/model/accessible/vendor/postgres/Library::getLoToFile → NO_COVERAGE |
return this.loToFile; |
| 49 | } | |
| 50 | ||
| 51 | public void setLoToFile(String loToFile) { | |
| 52 | this.loToFile = loToFile; | |
| 53 | } | |
| 54 | } | |
Mutations | ||
| 16 |
1.1 |
|
| 24 |
1.1 |
|
| 32 |
1.1 |
|
| 40 |
1.1 |
|
| 48 |
1.1 |