public static TCComponentItem findItem(String strItemID, String itemType) throws TCException {
TCSession m_session = (TCSession) AIFDesktop.getActiveDesktop().getCurrentApplication().getSession();
TCComponentItemType tcItemType = (TCComponentItemType) m_session.getTypeComponent(itemType);
TCComponentItem item = null;
if (tcItemType != null)
item = tcItemType.find(strItemID);
return item;
}
}