package com.vci.client.auth2.view; import javax.swing.JPanel; import com.vci.client.ui.frame.UIConstructorInterface; import com.vci.corba.common.VCIError; public class TypeActionClient implements UIConstructorInterface { @Override public void destory() throws VCIError { // TODO Auto-generated method stub } @Override public void init() throws VCIError { // TODO Auto-generated method stub } @Override public JPanel start() throws VCIError { TypeActionPanel view = (TypeActionPanel) TypeActionPanel.getInstance(); return view; } }