//
// TakesParam class
// part of the set of documents known as Java no sugar.
// Copyright (c) 1996 Sunil Gupta, sunil@magnetic.demon.co.uk
// placed into the public domain by the author
//
import java.applet.*;
import java.awt.*;
public class TakesParam extends Applet
{
String message;
public void init()
{
message = getParameter("string");
if (message == null)
{
message = "No string parameter";
}
}
public void paint( Graphics g)
{
int height;
height = this.size().height;
g.drawString(message, 0, height/2);
}
}
file: /Techref/language/java/nosugar/basics/code/TakesParam.java,
0KB, , updated: 1996年10月10日 11:07, local time: 2025年9月26日 12:44,
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE.
Questions?<A HREF="http://massmind.org/techref/language/java/nosugar/basics/code/TakesParam.java"> language java nosugar basics code TakesParam</A>
Did you find what you needed?
Welcome to massmind.org!
Welcome to massmind.org!
.