Commit f5868982 authored by Claes Sjofors's avatar Claes Sjofors

Java annotation protect added

parent 9944b783
...@@ -923,6 +923,7 @@ public class Glow { ...@@ -923,6 +923,7 @@ public class Glow {
public static final int eSave_Annot_display_level = 1305; public static final int eSave_Annot_display_level = 1305;
public static final int eSave_Annot_color_drawtype = 1306; public static final int eSave_Annot_color_drawtype = 1306;
public static final int eSave_Annot_font = 1307; public static final int eSave_Annot_font = 1307;
public static final int eSave_Annot_protect = 1308;
public static final int eSave_Arrow_arrow_width = 1400; public static final int eSave_Arrow_arrow_width = 1400;
public static final int eSave_Arrow_arrow_length = 1401; public static final int eSave_Arrow_arrow_length = 1401;
public static final int eSave_Arrow_draw_type = 1402; public static final int eSave_Arrow_draw_type = 1402;
......
...@@ -52,6 +52,7 @@ public class GrowAnnot extends GlowArrayElem { ...@@ -52,6 +52,7 @@ public class GrowAnnot extends GlowArrayElem {
int display_level; int display_level;
int annot_type; int annot_type;
int font; int font;
int protect;
public GrowAnnot(GrowCmn cmn) { public GrowAnnot(GrowCmn cmn) {
this.cmn = cmn; this.cmn = cmn;
...@@ -138,6 +139,9 @@ public class GrowAnnot extends GlowArrayElem { ...@@ -138,6 +139,9 @@ public class GrowAnnot extends GlowArrayElem {
case Glow.eSave_Annot_font: case Glow.eSave_Annot_font:
font = Integer.valueOf(token.nextToken()); font = Integer.valueOf(token.nextToken());
break; break;
case Glow.eSave_Annot_protect:
protect = Integer.valueOf(token.nextToken());
break;
case Glow.eSave_End: case Glow.eSave_End:
end_found = true; end_found = true;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment