mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
*** empty log message ***
This commit is contained in:
1632
src/JavaGUI/GFEditor2.java
Normal file
1632
src/JavaGUI/GFEditor2.java
Normal file
File diff suppressed because it is too large
Load Diff
15
src/JavaGUI/MarkedArea.java
Normal file
15
src/JavaGUI/MarkedArea.java
Normal file
@@ -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