First submit for debug plugin
[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         private String modName;
16
17         public PHPDBGMod() {
18         }
19
20         public PHPDBGMod(int modNo, String modName) {
21                 this.modNo= modNo;
22                 this.modName= modName;
23         }
24
25         public int getNo() {
26                 return modNo;
27         }
28
29         public String getName() {
30                 return modName;
31         }
32
33         public void setNo(int modNo) {
34                 this.modNo= modNo;
35         }
36
37         public void setName(String modName) {
38                 this.modName= modName;
39         }
40 }