package com.vci.client.omd.lifecycle.pubimpl; import java.util.ArrayList; import com.vci.client.omd.lifecycle.itf.InterLCy; public class InterLCyManager { private static InterLCyManager interManager= null; private ArrayList interLCyList = new ArrayList(); private InterLCyManager(){ } public static InterLCyManager getInstance(){ if(interManager == null){ interManager = new InterLCyManager(); } return interManager; } public void registerInter(InterLCy interLCy){ interLCyList.add(interLCy); } public ArrayList getInterLCyList(){ return interLCyList; } }