Package com.teamcenter.rac.kernel

Examples of com.teamcenter.rac.kernel.TCComponentItemType.find()


  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;
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.