A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / PHPDBGMod.java
1 /**********************************************************************
2  Copyright (c) 2000, 2002 IBM Corp. and others.
3  All rights reserved. This program and the accompanying materials
4  are made available under the terms of the Common Public License v1.0
5  which accompanies this distribution, and is available at
6  http://www.eclipse.org/legal/cpl-v10.html
7
8  Contributors:
9  Vicente Fernando - www.alfersoft.com.ar - Initial implementation
10  **********************************************************************/
11 package net.sourceforge.phpdt.internal.debug.core;
12
13 public class PHPDBGMod {
14         private int modNo;
15
16         private String modName;
17
18         public PHPDBGMod() {
19         }
20
21         public PHPDBGMod(int modNo, String modName) {
22                 this.modNo = modNo;
23                 this.modName = modName;
24         }
25
26         public int getNo() {
27                 return modNo;
28         }
29
30         public String getName() {
31                 return modName;
32         }
33
34         public void setNo(int modNo) {
35                 this.modNo = modNo;
36         }
37
38         public void setName(String modName) {
39                 this.modName = modName;
40         }
41 }