码迷,mamicode.com
首页 > 其他好文 > 详细

遍历获取Teamcenter中结构管理器的所有BOMLine

时间:2018-08-06 11:40:47      阅读:639      评论:0      收藏:0      [点我收藏+]

标签:管理器   oid   pre   div   eve   代码   lin   getchild   for   

直接上代码:

 1 public void collectAllBomLine(TCComponentBOMLine topBomLine) throws TCException{
 2         String objectName = topBomLine.getProperty("bl_indented_title");
 3         String level = topBomLine.getProperty("bl_level_starting_0");
 4         
 5         BomLineBean bomLineBean = new BomLineBean(objectName, level);
 6         BomLineList.add(bomLineBean);
 7         
 8         if(topBomLine.hasChildren()){
 9             AIFComponentContext[] childrens = topBomLine.getChildren();
10             for (AIFComponentContext aifComponentContext : childrens) {
11                 TCComponentBOMLine bomLine = (TCComponentBOMLine) aifComponentContext.getComponent();
12                 collectAllBomLine(bomLine);
13             }
14         }
15         
16     }

完毕

遍历获取Teamcenter中结构管理器的所有BOMLine

标签:管理器   oid   pre   div   eve   代码   lin   getchild   for   

原文地址:https://www.cnblogs.com/zhoulian/p/9429264.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!