*** empty log message ***

This commit is contained in:
janna
2003-11-16 11:25:52 +00:00
parent 53f4454633
commit 9d55f72d7a
2 changed files with 60 additions and 24 deletions

View File

@@ -4,12 +4,14 @@
public int begin;
public int end;
public String position;
public String words;
MarkedArea(int b, int e, String p)
MarkedArea(int b, int e, String p, String w)
{
begin = b;
end = e;
position = p;
words = w;
}
}