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
d150822e
Commit
d150822e
authored
Jan 18, 2001
by
Mark Wielaard
Committed by
Mark Wielaard
Jan 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/bean/Beans.java (instantiate): enable Applet code from Classpath
From-SVN: r39105
parent
9ca4a2fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
11 deletions
+13
-11
libjava/ChangeLog
+4
-0
libjava/java/beans/Beans.java
+9
-11
No files found.
libjava/ChangeLog
View file @
d150822e
2001-01-17 Mark Wielaard <mark@klomp.org>
* java/bean/Beans.java (instantiate): enable Applet code from Classpath
2001-01-17 Bryce McKinlay <bryce@albatross.co.nz>
* java/lang/Class.h (isInterface): Move implementation from
...
...
libjava/java/beans/Beans.java
View file @
d150822e
...
...
@@ -28,7 +28,7 @@ executable file might be covered by the GNU General Public License. */
package
java
.
beans
;
import
java.io.*
;
//
import java.applet.*;
import
java.applet.*
;
import
gnu.java.io.*
;
/**
...
...
@@ -116,16 +116,14 @@ public class Beans {
}
}
/* FIXME - Turned off since java.applet doesn't exist for libgcj.
* FIXME if(bean instanceof Applet) {
* FIXME Applet a = (Applet)bean;
* FIXME //a.setAppletContext(???);
* FIXME //a.setStub(???);
* FIXME if(serStream == null) {
* FIXME a.init();
* FIXME }
* FIXME }
* FIXME ********************************************************/
if
(
bean
instanceof
Applet
)
{
Applet
a
=
(
Applet
)
bean
;
//a.setAppletContext(???);
//a.setStub(???);
if
(
serStream
==
null
)
{
a
.
init
();
}
}
return
bean
;
}
...
...
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