View Javadoc

1   /***
2    * Created on Oct 17, 2005, Copyright UC Regents
3    */
4   package org.telscenter.pas.service;
5   
6   import java.awt.Frame;
7   
8   /***
9    * @author anthonyperritano
10   *
11   */
12  public class PasFrameService implements IPasFrameService {
13  
14  	private Frame pasFrame;
15  
16  	public PasFrameService(Frame pasFrame) {
17  		this.pasFrame = pasFrame;
18  	}
19  
20  
21  	public Frame getPasFrame() {
22  		return pasFrame;
23  	}
24  
25  	public void setPasFrame(Frame pasFrame) {
26  		this.pasFrame = pasFrame;
27  	}
28  
29  }