AppletContext.java: Fix typo and remove redundant modifiers.
2002-11-12 Eric Blake <ebb9@email.byu.edu> * java/applet/AppletContext.java: Fix typo and remove redundant modifiers. From-SVN: r59112
This commit is contained in:
parent
d3ac17c9c5
commit
a902a2dee7
2 changed files with 9 additions and 4 deletions
|
@ -130,7 +130,7 @@ public interface AppletContext
|
|||
* @throws IOException if the stream is too large
|
||||
* @since 1.4
|
||||
*/
|
||||
public void setStream(String key, InputStream stream) throws IOException;
|
||||
void setStream(String key, InputStream stream) throws IOException;
|
||||
|
||||
/**
|
||||
* Return the stream associated with a given key in this applet context, or
|
||||
|
@ -141,14 +141,14 @@ public interface AppletContext
|
|||
* @return the associated stream, or null
|
||||
* @since 1.4
|
||||
*/
|
||||
public InputStream getStream(String key);
|
||||
InputStream getStream(String key);
|
||||
|
||||
/**
|
||||
* Iterate over all keys that have associated streams. Sttream associated
|
||||
* Iterate over all keys that have associated streams. Stream associated
|
||||
* are local to the applet context, for security purposes.
|
||||
*
|
||||
* @return an iterator over the association keys
|
||||
* @since 1.4
|
||||
*/
|
||||
public Iterator getStreamKeys();
|
||||
Iterator getStreamKeys();
|
||||
} // interface AppletContext
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue