home *** CD-ROM | disk | FTP | other *** search
- package netscape.jsdebug;
-
- public class SourceTextItem {
- public static final int INITED = 0;
- public static final int FULL = 1;
- public static final int PARTIAL = 2;
- public static final int ABORTED = 3;
- public static final int FAILED = 4;
- public static final int CLEARED = 5;
- private String _url;
- private String _text;
- private int _status;
- private boolean _dirty;
-
- public SourceTextItem(String var1) {
- this(var1, (String)null, 0);
- }
-
- public SourceTextItem(String var1, String var2, int var3) {
- this._url = var1;
- this._text = var2;
- this._status = var3;
- this._dirty = true;
- }
-
- public String getURL() {
- return this._url;
- }
-
- public String getText() {
- return this._text;
- }
-
- public int getStatus() {
- return this._status;
- }
-
- public boolean getDirty() {
- return this._dirty;
- }
-
- public void setText(String var1) {
- this._text = var1;
- }
-
- public void setStatus(int var1) {
- this._status = var1;
- }
-
- public void setDirty(boolean var1) {
- this._dirty = var1;
- }
- }
-