File tree Expand file tree Collapse file tree
sqldev/src/main/java/org/utplsql/sqldev/model/ut Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package org .utplsql .sqldev .model .ut
16+ package org .utplsql .sqldev .model .ut ;
1717
18- import org .eclipse . xtend . lib . annotations . Accessors
19- import org .utplsql .sqldev .model .AbstractModel
18+ import org .springframework . core . style . ToStringCreator ;
19+ import org .utplsql .sqldev .model .AbstractModel ;
2020
21- @ Accessors
22- class OutputLines extends AbstractModel {
23- String [] lines ;
24- Integer numlines ;
25- }
21+ public class OutputLines extends AbstractModel {
22+ private String [] lines ;
23+ private Integer numlines ;
24+
25+ @ Override
26+ public String toString () {
27+ return new ToStringCreator (this , getStyler ())
28+ .append ("lines" , lines )
29+ .append ("numlines" , numlines )
30+ .toString ();
31+ }
32+
33+ public String [] getLines () {
34+ return this .lines ;
35+ }
36+
37+ public void setLines (final String [] lines ) {
38+ this .lines = lines ;
39+ }
40+
41+ public Integer getNumlines () {
42+ return this .numlines ;
43+ }
44+
45+ public void setNumlines (final Integer numlines ) {
46+ this .numlines = numlines ;
47+ }
48+ }
You can’t perform that action at this time.
0 commit comments