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
ef1c32c6
Commit
ef1c32c6
authored
Aug 09, 2002
by
Bryce McKinlay
Committed by
Bryce McKinlay
Aug 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More AWT/Swing merge from GNU Classpath.
From-SVN: r56151
parent
df74f077
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
libjava/ChangeLog
+3
-0
libjava/javax/swing/plaf/metal/MetalLookAndFeel.java
+31
-0
No files found.
libjava/ChangeLog
View file @
ef1c32c6
...
...
@@ -411,6 +411,9 @@
*
gnu
/
awt
/
xlib
/
XGraphicsConfiguration
.
java
,
gnu
/
awt
/
xlib
/
XToolkit
.
java
:
Updated
to
compile
against
1.4
abstract
API
.
*
javax
/
swing
/
plaf
/
metal
/
MetalLookAndFeel
.
java
:
New
file
from
GNU
Classpath
.
*
Makefile
.
am
:
Add
new
files
.
*
Makefile
.
in
:
Rebuilt
.
...
...
libjava/javax/swing/plaf/metal/MetalLookAndFeel.java
0 → 100644
View file @
ef1c32c6
package
javax
.
swing
.
plaf
.
metal
;
import
javax.swing.*
;
import
javax.swing.plaf.*
;
import
javax.swing.plaf.basic.*
;
public
class
MetalLookAndFeel
extends
LookAndFeel
{
public
boolean
isNativeLookAndFeel
()
{
return
true
;
}
public
boolean
isSupportedLookAndFeel
()
{
return
true
;
}
public
String
getDescription
()
{
return
"Metal look and feel"
;
}
public
String
getID
()
{
return
"MetalLookAndFeel"
;
}
public
String
getName
()
{
return
"MetalLookAndFeel"
;
}
UIDefaults
LAF_defaults
;
public
MetalLookAndFeel
()
{
}
public
UIDefaults
getDefaults
()
{
if
(
LAF_defaults
==
null
)
LAF_defaults
=
new
BasicDefaults
();
// Returns the default values for this look and feel.
return
LAF_defaults
;
}
};
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