public class animation extends Applet implements Runnable {
String company; String product; String[] multiple; String delimiter = ":"; Font myFont; Font notherFont; Color textColor; Color bgColor; Color borderColor; int Ypos = 20; int Xpos = 100;
Thread runner;
public void start() { if(runner == null) { // If thread runner is not running runner = new Thread(this); //create new thread runner.start(); } }
public void stop() { if(runner != null) { //If thread runner is running runner = null; //stop runner
<param name="company" value="Big John's Used Mobiles"> <param id="product" name="product" value="Samsung:Apple:Erikson:why is this still on the same line">