Featured Post

Step Wise Project Planning

Planning is the most difficult process in project management. The framework described is called the Stepwise method to help to distinguis...

Write a program to create a java bean.

Write a program to create a java bean.

package beans;
import java.awt.*;
import java.applet.*;
import javax.swing.JButton;
import java.io.Serializable;
/**
 *
 * @author administration
 */
public class Beans extends JButton implements Serializable
{

    /**
     * @param args the command line arguments
     */
    //public static void main(String[] args)
  
        //public void paint(Graphics g)
        public void init()
        {
           
           Label b=new Label("submitted");
           add(b);
        }
              
    }
      //  public void init()
     
Previous
Next Post »