二次開發(fā)常用API_第1頁
二次開發(fā)常用API_第2頁
二次開發(fā)常用API_第3頁
二次開發(fā)常用API_第4頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、1. 1.根據(jù)零件名稱/編碼 得到該零件 2. dmgmt.WTPartHelper.findPartByName(name) ; 3. dmgmt.WTPartHelper.findPartByNumber(number); 4. 2.根據(jù)WTpart得到WTparMaster 5. WtPart wtpart; 6. WTPartMaster wtmaster=(WTPartMster)part.getMaster(); 7. 3.獲取codebase下配置文件perties屬性信息 8. WTProperties wtp

2、roperties = WTProperties.getLocalProperties(); 9. String wthome = wtproperties.getProperty("wt.home", ""); /codebase的文件夾路徑 10. 4.獲取part被借用的所有父部件 11. QueryResult qr= wt.part.WTPartHelper.service.getUsedByWTParts(WTPartMster wtMaster); 12. 注:此方法得到的結(jié)果為該part被使用情況的全部父部件,包括了Design視圖及Ma

3、nufacturing視圖 更包括了父部件使用part的所有修訂版本,打印出來可以看到會有相同的部件編號,不同的修訂版本. 13. 5.根據(jù)OID 獲取Wtpart 14. wt.fc.WTReference partRef = new wt.fc.ReferenceFactory().getReference( oid ); 15. WTPart wtpart=(WTPart)partRef; 16. 6.得到零件最新版本 17. WTPart wtpart= (WTPart) VersionControlHelper.getLatestIteration(part); 18. 7.通過過濾

4、得到零件最新版本 19. QuerySpec querysearch = new QuerySpec(WTPartMaster.class); 20. /查詢所有的WTPartMaster 21. QueryResult queryresult = PersistenceHelper.manager.find(querysearch); 22. LatestConfigSpec latestconfigspec = new LatestConfigSpec(); 23. /根據(jù)WTPartMaster查詢所有最新版本的零部件 24. QueryResult allWTPart = Config

5、Helper.service.filteredIterationsOf(queryresult,latestconfigspec) 25. 8.查詢某用戶某段時間范圍內(nèi)創(chuàng)建的零件 26. QuerySpec qs = new QuerySpec(WTPart.class); 27. qs.appendSearchCondition(new SearchCondition(WTPart.class,WTPart.CREATE_TIMESTAMP, true, new AttributeRange(begintime, endtime);/刪選條件 時間范圍內(nèi) 28. qs.appendAnd()

6、;/一定要加上 不然下一個條件不能刪選 29. qs.appendSearchCondition(new SearchCondition(WTPart.class, 30. "iterationInfo.creator.key", SearchCondition.EQUAL,PersistenceHelper.getObjectIdentifier(name);/刪選條件 用戶 31. QueryResult qr = PersistenceHelper.manager.find(qs); 32. /今后持續(xù)更新 /* * 根據(jù)用戶名得到用戶 * param name 用戶

7、名 * throws WTException * return WTUser */ public static WTUser getUserFromName(String name) throws WTException Enumeration enumUser = OrganizationServicesHelper.manager.findUser(WTUser.NAME, name); WTUser user = null; if (enumUser.hasMoreElements() user = (WTUser) enumUser.nextElement(); if (user =

8、null) enumUser = OrganizationServicesHelper.manager.findUser(WTUser.FULL_NAME, name); if (enumUser.hasMoreElements() user = (WTUser) enumUser.nextElement(); if (user = null) throw new WTException("系統(tǒng)中不存在用戶名為'" + name + "'的用戶!"); return user; 10.windchill 中查詢,高級查詢,基本查詢Quer

9、ySpec qs = new QuerySpec();/構(gòu)造Int index = qs.appendClassList(WTPart.class,true);/添加查詢類型,獲取類型索引,第2個參數(shù)表示“要查詢的類型、表”WhereExpression where = new SearchCondition(WTPart.class, WTPart.xx, “=”, xx);/泛型在WC API中的使用/獲取查詢條件數(shù)目If(qs.getConditionCount()>0 && qs.getWhere().endsWith(“") qs.appendAnd(

10、);/添加查詢條件qs.appendWhere(where, new intindex);/* 以下是聯(lián)合查詢的API范例。LINK關(guān)系/ROLEA、ROLEB的INDEX被使用到。int linkIndex = qs.appendClassList(XXLink.class, false);qs.appendJoin(linkIndex, xxLink.RoleA, index_A);qs.appendJoin(linkIndex, xxLink.RoleB, index_B);/添加“生命周期”查詢條件LifeCycleConfigSpec lcsp = new LifeCycleConf

11、igSpec();lcsp.setLifeCycleState(State.toState(state);qs = lcsp.appendSearchCriteria(qs);/執(zhí)行查詢QueryResult qr = PersistenceHelper.manager.find(qs);/過濾出最新小版本LatestConfigSpec lcs = new LatestConfigSpec();qr = cess(qr);/* 根據(jù)WTPartMaster對象獲得最新的WTPart* param partmaster WTPartMaster對象* return 最新的WTPart* throws WTException */public static WTPart getLastPart(WTPartMaster partmaster) throws WTExceptionWTPart part=null;if(partmaster=null)return part;ConfigSpec configSpec=ConfigHelper.service.getDefaultConfig

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論