mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-07-21 13:11:31 -06:00
*** empty log message ***
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,15 @@
|
||||
//package javaGUI;
|
||||
public class MarkedArea
|
||||
{
|
||||
public int begin;
|
||||
public int end;
|
||||
public String position;
|
||||
|
||||
MarkedArea(int b, int e, String p)
|
||||
{
|
||||
begin = b;
|
||||
end = e;
|
||||
position = p;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user