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 * Wrapper class representing a debhelper script
22 *
23 * @author Christian Elberfeld <elberfeld@web.de>
24 */
25 public class DebhelperType {
26
27 protected String name;
28
29
30 public DebhelperType() {}
31
32 public DebhelperType(String name) {
33 this.name = name;
34 }
35
36
37 public String getName() {
38 return name;
39 }
40 public void setName(String name) {
41 this.name = name;
42 }
43
44
45 }