Example usage for java.awt.event WindowEvent paramString

List of usage examples for java.awt.event WindowEvent paramString

Introduction

In this page you can find the example usage for java.awt.event WindowEvent paramString.

Prototype

public String paramString() 

Source Link

Document

Returns a parameter string identifying this event.

Usage

From source file:Main.java

protected void processWindowEvent(WindowEvent e) {
    System.out.println(e.paramString());
    super.processWindowEvent(e); // Pass on the event
}