Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
266a4420
Commit
266a4420
authored
Jul 20, 2000
by
Tom Tromey
Committed by
Tom Tromey
Jul 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* scripts/showval.java: New file.
From-SVN: r35152
parent
7f8a07db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
0 deletions
+43
-0
libjava/ChangeLog
+2
-0
libjava/scripts/showval.java
+41
-0
No files found.
libjava/ChangeLog
View file @
266a4420
2000-07-20 Tom Tromey <tromey@cygnus.com>
* scripts/showval.java: New file.
* scripts/classes.pl (scan): Print inner classes properly.
* gcj/javaprims.h: Updated class list.
...
...
libjava/scripts/showval.java
0 → 100644
View file @
266a4420
// Show a value given class name and constant name.
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
/* Written by Tom Tromey <tromey@redhat.com>. */
// Use like this to print a `static final' value (integers only, not
// strings yet):
// java showval java.awt.geom.AffineTransform.TYPE_IDENTITY
// Prints result like:
// TYPE_IDENTITY = 0
// In conjunction with a keyboard macro you can do a number of
// constants very easily.
import
java.lang.reflect.*
;
public
class
showval
{
public
static
void
main
(
String
[]
args
)
{
int
ch
=
args
[
0
].
lastIndexOf
(
'.'
);
String
className
=
args
[
0
].
substring
(
0
,
ch
);
String
constName
=
args
[
0
].
substring
(
ch
+
1
);
try
{
Class
klass
=
Class
.
forName
(
className
);
Field
field
=
klass
.
getField
(
constName
);
System
.
out
.
println
(
constName
+
" = "
+
field
.
getInt
(
null
));
}
catch
(
Throwable
_
)
{
System
.
out
.
println
(
_
);
}
}
}
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