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
3128dd5c
Commit
3128dd5c
authored
Jan 05, 2003
by
Tom Tromey
Committed by
Tom Tromey
Jan 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/awt/List.java: Merged with Classpath.
From-SVN: r60896
parent
7c288b73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
libjava/ChangeLog
+4
-0
libjava/java/awt/List.java
+9
-0
No files found.
libjava/ChangeLog
View file @
3128dd5c
2003
-
01
-
04
Tom
Tromey
<
tromey
@
redhat
.
com
>
*
java
/
awt
/
List
.
java
:
Merged
with
Classpath
.
2003
-
01
-
03
Mark
Wielaard
<
mark
@
klomp
.
org
>
*
java
/
io
/
FileDescriptor
.
java
(
position
):
New
private
field
.
...
...
libjava/java/awt/List.java
View file @
3128dd5c
...
...
@@ -113,6 +113,8 @@ private ActionListener action_listeners;
/**
* Initializes a new instance of <code>List</code> with no visible lines
* and multi-select disabled.
*
* @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
*/
public
List
()
...
...
@@ -127,6 +129,8 @@ List()
* number of visible lines and multi-select disabled.
*
* @param lines The number of visible lines in the list.
*
* @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
*/
public
List
(
int
rows
)
...
...
@@ -143,12 +147,17 @@ List(int rows)
* @param lines The number of visible lines in the list.
* @param multipleMode <code>true</code> if multiple lines can be selected
* simultaneously, <code>false</code> otherwise.
*
* @exception HeadlessException If GraphicsEnvironment.isHeadless() is true.
*/
public
List
(
int
rows
,
boolean
multipleMode
)
{
this
.
rows
=
rows
;
this
.
multipleMode
=
multipleMode
;
if
(
GraphicsEnvironment
.
isHeadless
())
throw
new
HeadlessException
();
}
/*************************************************************************/
...
...
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