1 /*
2 * This is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation; either version 2.1 of
5 * the License, or (at your option) any later version.
6 *
7 * This software is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
11 *
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this software; if not, write to the Free
14 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
15 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
16 */
17
18 package installtoolkit.deb;
19
20 /**
21 * A wrapper class for additional commads to execute along with
22 * debhelper scripts.
23 *
24 * @author Christian Elberfeld <elberfeld@web.de>
25 *
26 */
27 public class CommandType {
28
29 String line;
30
31 public CommandType() {}
32
33 public CommandType(String line) {
34 this.line = line;
35 }
36
37 public void setLine(String line) {
38 this.line = line;
39 }
40
41 public String getLine() {
42 return line;
43 }
44
45
46 }