initial contribution
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / PHPString.java
1 package net.sourceforge.phpeclipse.phpeditor;
2
3 /**
4  * 
5  * @author khartlage
6  */
7 public class PHPString {
8   private String phpString;
9   private int lineNumber;
10   
11   public PHPString(String phpString, int lineNumber) {
12     this.phpString = phpString;
13     this.lineNumber = lineNumber;
14   }
15   
16   public String getPHPString() {
17     return phpString;
18   }
19     
20   public int getLineNumber() {
21     return lineNumber;
22   }
23 }