FileDocCategorySizeDatePackage
DialEvent.javaAPI DocExample276Mon May 01 14:41:56 BST 2000None

DialEvent.java

//file: DialEvent.java
import java.awt.*;

public class DialEvent extends java.util.EventObject {
    int value;

    DialEvent( Dial source, int value ) {
        super( source );
        this.value = value;
    }

    public int getValue(  ) {
        return value;
    }
}