View Javadoc

1   /***
2    * 
3    */
4   package org.telscenter.pas.steps.domain;
5   
6   import java.beans.beancontext.BeanContextChildSupport;
7   
8   
9   /***
10   * @author anthonyperritano
11   *
12   */
13  public abstract class BlockInteraction extends BeanContextChildSupport{
14  
15  	protected String responseIdentifier;
16  	protected String prompt;
17  	
18  	public BlockInteraction() {
19  	}
20  
21  	public String getPrompt() {
22  		return prompt;
23  	}
24  
25  	public void setPrompt(String prompt) {
26  		String old = this.prompt;
27  		this.prompt = prompt;
28  		firePropertyChange("prompt", old, this.prompt); //$NON-NLS-1$
29  	}
30  
31  	public String getResponseIdentifier() {
32  		return responseIdentifier;
33  	}
34  
35  	public void setResponseIdentifier(String responseIdentifier) {
36  		this.responseIdentifier = responseIdentifier;
37  	}
38  
39  }