本文整理汇总了Java中ims.spinalinjuries.vo.lookups.Adaptation类的典型用法代码示例。如果您正苦于以下问题:Java Adaptation类的具体用法?Java Adaptation怎么用?Java Adaptation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Adaptation类属于ims.spinalinjuries.vo.lookups包,在下文中一共展示了Adaptation类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadAdaptationCategories
import ims.spinalinjuries.vo.lookups.Adaptation; //导入依赖的package包/类
protected void loadAdaptationCategories()
{
TreeNode[] coll = ims.spinalinjuries.vo.lookups.LookupHelper.getAdaptation(domain.getLookupService()).getRootNodes();
this.form.ctnDetail().comboBoxAdapt1().clear();
if(coll != null)
{
for(int i=0;i<coll.length;i++)
{
Adaptation item = (Adaptation)coll[i];
if(item.isActive())
form.ctnDetail().comboBoxAdapt1().newRow(item, item.getText());
}
}
}
示例2: loadChildAdaptations
import ims.spinalinjuries.vo.lookups.Adaptation; //导入依赖的package包/类
private void loadChildAdaptations()
{
if (this.form.ctnDetail().comboBoxAdapt1().getValue() == null)
return;
if (this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances() != null)
{
for(int x = 0; x < this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().size(); x++)
{
this.form.ctnDetail().comboBoxAdapt2().newRow((Adaptation)this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().get(x),this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().get(x).toString());
}
}
}
示例3: oncomboBoxAdapt1ValueSet
import ims.spinalinjuries.vo.lookups.Adaptation; //导入依赖的package包/类
protected void oncomboBoxAdapt1ValueSet(Object value)
{
this.form.ctnDetail().comboBoxAdapt2().clear();
if (value == null)
return;
if (this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances() != null)
{
for(int x = 0; x < this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().size(); x++)
{
this.form.ctnDetail().comboBoxAdapt2().newRow((Adaptation)this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().get(x),this.form.ctnDetail().comboBoxAdapt1().getValue().getChildInstances().get(x).toString());
}
}
}