需要用户干预的ATTR_SYNC:
# 在FORM表中事先定义重量属性,名为weight
{ Dataset Type = "UGMASTER"
# 首先将在UG中输入的重量值传递到IMAN属性表中
重量 : IRM.weight /master=cad
}
{ Dataset Type = "UGPART"
# 在将属性表中的重量值传递给UG二维图(明细栏)
重量 : IRM.weight /master=iman
}
显然,映射过程是自动完成的,用户可以接受,但需要在UG中手动赋值一次,用户往往不太满意
现在,通过简单的二次开发可以实现在FORM表中自动获取UG重量的值,方法如下:
# 假设在FORM中有重量属性,属性名为weight,类型float,
# 在FORM类型loadform()中添加如下代码:
private IMANProperty massproperty;
private double ugmaster_weight;
public double GetUGMasterWeight(AbstractIMANForm c)
throws IMANException
{
/* if this itemRevision has UGMASTER dataset
* and with UGPART-MASSPR NR attached,
* then "massvalue" will obtain the mass of UG file.
*/
ugmaster_weight = 0.0;
try
{
AIFComponentContext comp_ctx[] =c
.getFormComponent()
.whereReferenced();
IMANComponentItemRevision itemrev =
(IMANComponentItemRevision)comp_ctx[0]
.getComponent();
IMANComponentDataset dataset = null;
IMANComponentForm massform = null;
if(itemrev.getChildren("IMAN_specification")
.length > 0)
{
for(int k=0; k0)
{
massform = (IMANComponentForm) dataset
.getNamedRefComponents("UGPART-MASSPR")[0];
massproperty = massform.getIMANProperty("mass");
ugmaster_weight = massproperty.getDoubleValue();
}
}
}
}
}
catch(IMANException imanexception)
{
throw imanexception;
}
return ugmaster_weight;
}
接下来,只需要一次属性映射,就可以将此属性值用于UGPART中了
{ Dataset Type = "UGPART"
重量 : IRM.weight /master=iman
# 如果不是ItemRevision Master,就用GRM
}
除 了使用上面的方法在IMAN方面解决这个问题之外,还可以试图从UG方面解决这个问题,试想,如果能够使用UG GRIP开发一个小函数,用于将重量值赋给某个属性,然后在save()方法中调用这个函数,那么当用户在UG中做保存操作时,自动完成赋值操作也是可行 的,当然我不会GRIP,谁会可以告诉我,我会把它加到这里,谢谢
当然,如果不用开发能够实现是最好的方法,因此还可以通过综合使用GRM与NR的ATTR_SYNC来直接实现,方法如下:
{ Dataset Type = "UGPART"
重量 : IRM.NR(UGPART-MASSPR.UGPartMassPropsForm).mass
/master=iman
}
(Thank for Dr. JT Wang's help)
No comments:
Post a Comment