1
0
forked from GitHub/gf-core

*** empty log message ***

This commit is contained in:
janna
2004-10-27 18:24:56 +00:00
parent 25492ab0b9
commit b99bcb1ab6
4 changed files with 490 additions and 373 deletions

View File

@@ -3,15 +3,16 @@
{
public int begin;
public int end;
public String position;
public LinPosition position;
public String words;
MarkedArea(int b, int e, String p, String w)
MarkedArea(int b, int e, LinPosition p, String w)
{
begin = b;
end = e;
position = p;
words = w;
}
}