- 博客(34)
- 收藏
- 关注
转载 vhd resize
http://blog.sina.com.cn/s/blog_59890d560101akxb.html 转载于:https://my.oschina.net/zengbo/blog/13...
2013-05-28 11:03:00 376
转载 Gitolite 构建 Git 服务器
目录 1SSH 协议 1.1SSH 公钥认证 1.2SSH 主机别名 2Gitolite 服务架设 2.1安装 Gitolite ...
2013-05-04 11:50:00 143
转载 Ubuntu 12.04 Gitolite 安装指南
先概述一下,你手上有一台全新的 Ubuntu Server,参照本文会安装下列内容: 1、Git(这是肯定的) 2、Gitolite(用于Git服务器管理,简介参见附注2) 3、Gitdaemon(守护进程,开放一个公共的 git clone 服务,可选) 4、Gitweb(...
2013-05-04 11:48:00 119
转载 getWtpAssoc
WTPart wtpListA[] = ObjectDependencyUtility.getAssociated((EPMDocument) epmIN); if (wtpListA != null) System.out.println("\tAssociated (.getAs...
2013-04-09 11:25:00 227
转载 UpdateIBAs
/*maintenance: mkraegeloh@sulis.de20051114 mkr; move code from main into method to make it callable from other classes.purpose: set iba values ...
2013-04-09 11:11:00 244
转载 Windchill 零件操作通用类
//01. 零件号 返回 WTPart对象 public static WTPart getWTPartByNumber(String paramString) throws WTException { WTPart localWTPart = null; Q...
2013-04-09 11:09:00 614
转载 什么是BOM?
采用计算机辅助企业生产管理,首先要使计算机能够读出企业所制造的产品构成和所有要涉及的物料,为了便于计算机识别,必须把用图示表达的产品结构转化成某种数据格式,这种以数据格式来描述产品结构的文件就是物料清单,即是BOM。它是定义产品结构的技术文件,因此,它又称为产品结构表或产品结构树。在某些工业领...
2013-04-05 16:14:00 330
转载 exp and imp dump to different oracle version
sqlplus system/manager@wind create directory data as 'C:\SQLScripts'; grant read, write on directory data to user1; $ expdp user1/pwd ver...
2013-04-05 10:59:00 71
转载 how to get version in Windchill
PublishUtils.getIterationIdentifier(epmdocument)) 转载于:https://my.oschina.net/zengbo/blog/11549...
2013-03-20 16:57:00 79
转载 download EPMDocument in Windchill
ddpackage ext;import java.util.*;import java.rmi.RemoteException;import java.net.URL;import java.beans.PropertyVetoException;import java....
2013-03-20 16:37:00 285
转载 how to get Default Representation in Windchill
Representation rep1 = PublishUtils.getRepresentation(epmDoc); QueryResult queryResult = PublishUtils.getRepresentations(epmDoc); while ...
2013-03-20 16:11:00 148
转载 how to get Thumbnail in Windchill
UIHelper.getDefaultThumbnailURL(epmDoc); 转载于:https://my.oschina.net/zengbo/blog/1154...
2013-03-20 15:51:00 102
转载 How to get Lifecycle History in Windchill
public static String getLifeCycleSHistory(LifeCycleManaged lifeCycleManaged, String searchState) throws Exception { QueryResult lifecycleResult...
2013-03-20 15:47:00 128
转载 How to get Soft Type List in Windchill
public static String getTypeList(String type) throws Exception{ QuerySpec qs = new QuerySpec(WTTypeDefinitionMaster.class); qs.appe...
2013-03-20 15:47:00 192
转载 How to get an icon of an object in Windchill
public static String getIcon(WTObject wtobject) throws Exception { IconDelegate icondelegate = IconDelegateFactory.getInstance().getIconDelegat...
2013-03-20 15:46:00 107
转载 How to get part occurrences from usage link in ...
public static Vector getOccurrenceNames(WTPartUsageLink pulink) throws Exception { Vector vector = new Vector(); QueryResult occurrences = ...
2013-03-20 15:46:00 131
转载 How to create baseline in Windchill
WTHashSet wtHashSet = new WTHashSet();wtHashSet.addElement(epmDocument);ManagedBaseline managedBaseline = ManagedBaseline.newManagedBaseline();m...
2013-03-20 15:46:00 206
转载 How to reassign lifecycle in Windchill
WTContainerRef containerRef = ((WTContained) doc).getContainerReference();LifeCycleHelper.service.reassign((LifeCycleManaged) doc, LifeCycleHelper...
2013-03-20 15:46:00 110
转载 How to iterate object in Windchill
public static void iterateObject(Iterated iterated) throws Exception{ CheckoutLink checkOutLink = CheckInOutTaskLogic.checkOutObject((Workable)...
2013-03-20 15:45:00 86
转载 How to get latest version in Windchill
SessionServerHelper.manager.setAccessEnforced(false); if (epmDoc == null) return null; try { QueryResult qr = VersionControlHelper.service...
2013-03-20 15:45:00 90
转载 How to get associate Workflow process from prim...
public static void getRelatedProcesses(Persistable persistable) throws Exception { QueryResult queryresult = WfEngineHelper.service.getAssociat...
2013-03-20 15:44:00 136
转载 How to find group object from group name in Win...
public static WTGroup getGroup(String groupName) throws WTException{ QuerySpec qs = new QuerySpec(WTGroup.class); qs.appendSearchCondition(...
2013-03-20 15:44:00 59
转载 How to get primary content link in Windchill
public static URL getPrimaryContentURL(FormatContentHolder formatcontentholder) throws Exception { formatcontentholder = (FormatContentHolder)C...
2013-03-20 15:44:00 180
转载 How to extract data from ContentHolder in Windc...
public static String extractContent(ContentHolder contentHolder, String location, ContentRoleType contentRoleType) throws Exception { contentHo...
2013-03-20 15:42:00 111
转载 How to create details page link in Windchill
public static String getDetailsLink(Persistable persistable) throws Exception{ NmOid nmoid = NmOid.newNmOid(persistable.getPersistInfo().getObj...
2013-03-20 15:42:00 104
转载 How to find report by report name in Windchill
public static ObjectIdentifier findReportObjectIdByName(String reportName) throws Exception{ QuerySpec queryspec = new QuerySpec(); int i =...
2013-03-20 15:42:00 81
转载 How to create a new object in Windchill with IBAs
LWCNormalizedObject obj = new LWCNormalizedObject("com.acme.AcmePart",null,null);obj.load("name","number");obj.set("name","my name");obj.set("nu...
2013-03-20 15:41:00 75
转载 How to get objects from Info*Engine Group in Wi...
public static ObjectVector getObjectsFromGroup(Group group) throws Exception { ObjectVector vector = new ObjectVector(); if(group != null){...
2013-03-20 15:41:00 58
转载 How to execute webject using java api in Windchill
public static Group queryObject(String type) throws Exception { Task task = new Task(); task.setParam("supporting-adapter", WTProper...
2013-03-20 15:40:00 118
转载 How to update an object in Windchill with IBAs
LWCNormalizedObject obj = new LWCNormalizedObject(my_persistable,null,Locale.US,new UpdateOperationIdentifier());obj.load("attributeA","attribtueB...
2013-03-20 15:40:00 119
转载 How to get IBA values from a soft typed object
LWCNormalizedObject obj = new LWCNormalizedObject(my_persistable,null,null,null);obj.load("name","number");Object nameValue = obj.get("name");Ob...
2013-03-20 15:39:00 105
转载 how to get Multilevel BOM in Windchill by using...
public Vector<object> getPartStructure(WTPart parentPart) throws Exception { LatestConfigSpec lcs = new LatestConfigSpec(); ...
2013-03-20 15:37:00 133
转载 How to get IBA values in a HashMap in Windchill
public static HashMap getIBAValueMap(IBAHolder ibaHolder) throws Exception { HashMap ibaValueMap = new HashMap(); ibaHolder = IBAV...
2013-03-20 15:36:00 175
转载 how to set Windchill development environment?
C:\ptc\Windchill_10.0\Windchill\tomcat\conf\web.xml <init-param> <param-name>development</param-name> ...
2013-03-20 15:35:00 84
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人