1 package com.jsql.util.reverse; 2 3 public class ModelReverse { 4 String name; 5 String command; 6 7 public ModelReverse(String name, String command) { 8 this.name = name; 9 this.command = command; 10 } 11 12 public String getName() { 13 return this.name; 14 } 15 16 public void setName(String name) { 17 this.name = name; 18 } 19 20 public String getCommand() { 21 return this.command; 22 } 23 24 public void setCommand(String command) { 25 this.command = command; 26 } 27 }