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 interface IPasFrameService { 13 14 public Frame getPasFrame(); 15 16 public void setPasFrame(Frame pasFrame); 17 18 }