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