FileDocCategorySizeDatePackage
NewBean.javaAPI DocExample1325Sat Sep 12 03:01:00 BST 1998None

NewBean

public class NewBean extends BeanPanel implements borland.jbcl.util.BlackBox

Fields Summary
BevelPanel
bevelPanel1
BorderLayout
borderLayout1
XYLayout
xYLayout1
private String
example
public static final String
EXAMPLE_EVENT
Constructors Summary
public NewBean()


    
    try {
      jbInit();
    }
    catch (Exception e) {
      e.printStackTrace();
    }
  
Methods Summary
protected voidfireExampleActionEvent()

     
    //Args:  event source,event ID, event command
    processActionEvent(new ActionEvent(this,ActionEvent.ACTION_PERFORMED, EXAMPLE_EVENT));
  
public java.lang.StringgetExample()

    return example;
  
private voidjbInit()

    bevelPanel1.setLayout(xYLayout1);
    this.setLayout(borderLayout1);
    this.add(bevelPanel1, BorderLayout.CENTER);
  
public voidsetExample(java.lang.String s)


      
    example=s;