mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
19 lines
347 B
Java
19 lines
347 B
Java
//package javaGUI;
|
|
public class MarkedArea
|
|
{
|
|
public int begin;
|
|
public int end;
|
|
public LinPosition position;
|
|
public String words;
|
|
|
|
MarkedArea(int b, int e, LinPosition p, String w)
|
|
{
|
|
begin = b;
|
|
end = e;
|
|
position = p;
|
|
words = w;
|
|
}
|
|
|
|
}
|
|
|