Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
f5868982
Commit
f5868982
authored
Apr 14, 2015
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java annotation protect added
parent
9944b783
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
java/jpwr/jopg/src/Glow.java
java/jpwr/jopg/src/Glow.java
+1
-0
java/jpwr/jopg/src/GrowAnnot.java
java/jpwr/jopg/src/GrowAnnot.java
+4
-0
No files found.
java/jpwr/jopg/src/Glow.java
View file @
f5868982
...
...
@@ -923,6 +923,7 @@ public class Glow {
public
static
final
int
eSave_Annot_display_level
=
1305
;
public
static
final
int
eSave_Annot_color_drawtype
=
1306
;
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_length
=
1401
;
public
static
final
int
eSave_Arrow_draw_type
=
1402
;
...
...
java/jpwr/jopg/src/GrowAnnot.java
View file @
f5868982
...
...
@@ -52,6 +52,7 @@ public class GrowAnnot extends GlowArrayElem {
int
display_level
;
int
annot_type
;
int
font
;
int
protect
;
public
GrowAnnot
(
GrowCmn
cmn
)
{
this
.
cmn
=
cmn
;
...
...
@@ -138,6 +139,9 @@ public class GrowAnnot extends GlowArrayElem {
case
Glow
.
eSave_Annot_font
:
font
=
Integer
.
valueOf
(
token
.
nextToken
());
break
;
case
Glow
.
eSave_Annot_protect
:
protect
=
Integer
.
valueOf
(
token
.
nextToken
());
break
;
case
Glow
.
eSave_End
:
end_found
=
true
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment