IntelliJ Community . WizardEvent

 
WizardEvent 

HOME INDEX SEARCH CHANGES GO  

package org.intellij.wizard; 
 
import java.io.Serializable; 
 
/** 
 * Wizard Event. 
 *  
 * @author <a href="mailto:aefimov@spklabs.com">Alexey Efimov</a> 
 */ 
public class WizardEvent implements Serializable { 
  /** Source Wizard of event */ 
  private Wizard wizard; 
 
  public WizardEvent(Wizard source) { 
    this.wizard = source; 
  } 
 
  public Wizard getWizard() { 
    return wizard; 
  } 
} 
 

e d i t a t t a c h r e f - b y d i f f s m o r e
Have ideas, requests, problems regarding this site? Send feedback.
Copyright © 2000-2003 by the contributing authors. All materials at intellij.org are the property of the contributing authors.