package com.vci.client.ui.frame;
|
|
import javax.swing.JPanel;
|
|
import com.vci.corba.common.VCIError;
|
|
|
public interface UIConstructorInterface {
|
|
public void init() throws VCIError;
|
|
public JPanel start() throws VCIError;
|
|
public void destory() throws VCIError;
|
}
|