本文整理汇总了Java中ims.admin.vo.ConfigLocationLiteVo类的典型用法代码示例。如果您正苦于以下问题:Java ConfigLocationLiteVo类的具体用法?Java ConfigLocationLiteVo怎么用?Java ConfigLocationLiteVo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ConfigLocationLiteVo类属于ims.admin.vo包,在下文中一共展示了ConfigLocationLiteVo类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: populateSelectedLocationGrid
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private void populateSelectedLocationGrid(ConfigLocationLiteVoCollection locationColl)
{
if(locationColl == null || locationColl.size() < 1)
return;
for(int i = 0; i < locationColl.size();i++)
{
ConfigLocationLiteVo record = locationColl.get(i);
if (record == null)
continue;
grdSelectedLocationsRow newRow = form.grdSelectedLocations().getRows().newRow();
newRow.setColumnLocationName(record.getName());
newRow.setColumnSelected(Boolean.TRUE);
newRow.setValue(record);
}
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:17,代码来源:Logic.java
示例2: populateSearchLocationGrid
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private void populateSearchLocationGrid(ConfigLocationLiteVoCollection locColl)
{
form.grdSearchLocation().getRows().clear();
if(locColl == null || locColl.size() < 1)
return;
for(int i = 0; i < locColl.size();i++)
{
ConfigLocationLiteVo record = locColl.get(i);
if (record == null)
continue;
grdSearchLocationRow newRow = form.grdSearchLocation().getRows().newRow();
newRow.setColumnLocationName(record.getName());
newRow.setColumnSelect(Boolean.FALSE);
newRow.setValue(record);
}
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:17,代码来源:Logic.java
示例3: updateMenuContext
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private void updateMenuContext()
{
if(form.getMode().equals(FormMode.VIEW))
{
form.getContextMenus().RefMan.hideAllServiceLocationMenuMenuItems();
form.getContextMenus().RefMan.hideAllCCGContextMenuMenuItems(); //wdev-18409
}
else
{
form.getContextMenus().RefMan.getServiceLocationMenuAddServiceItem().setVisible(true);
form.getContextMenus().RefMan.getServiceLocationMenuAddLocationItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && (form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue() instanceof ServiceVoLiteVo || form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue() instanceof ConfigLocationLiteVo));
form.getContextMenus().RefMan.getServiceLocationMenuRemoveServiceItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue() instanceof ServiceVoLiteVo );
form.getContextMenus().RefMan.getServiceLocationMenuRemoveLocationItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue() instanceof ConfigLocationLiteVo);
//wdev-18409
form.getContextMenus().RefMan.hideAllCCGContextMenuMenuItems();
form.getContextMenus().RefMan.getCCGContextMenuADDItem().setVisible(true);
form.getContextMenus().RefMan.getCCGContextMenuEDITItem().setVisible(form.ctnDetails().lyrDetails().tabPageCCG().grdCCG().getSelectedRow() != null);
form.getContextMenus().RefMan.getCCGContextMenuREMOVEItem().setVisible(form.ctnDetails().lyrDetails().tabPageCCG().grdCCG().getSelectedRow() != null);
//------------
}
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:25,代码来源:Logic.java
示例4: checkIfLocationIsInLocationSelectedGrid
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private boolean checkIfLocationIsInLocationSelectedGrid(ConfigLocationLiteVo location)
{
if(location == null)
return false;
for(int i = 0;i < form.grdSelectedLocations().getRows().size();i++)
{
ConfigLocationLiteVo tempVo = form.grdSelectedLocations().getRows().get(i).getValue();
if(location.getID_LocationIsNotNull() && location.getID_Location().equals(tempVo.getID_Location()))
return true;
}
return false;
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:15,代码来源:Logic.java
示例5: setLocInContractServiceLocWithLocNull
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private boolean setLocInContractServiceLocWithLocNull(ConfigLocationLiteVo tempVo)
{
if(tempVo == null)
throw new CodingRuntimeException();
ContractServiceLocationsConfigVoCollection tempColl = form.getLocalContext().getServiceAndLocation();
if(tempColl == null || tempColl.size()==0)
return false;
for(int i = 0;i<tempColl.size();i++)
{
ContractServiceLocationsConfigVo contVo = tempColl.get(i);
if(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue()!= null )
{
ims.framework.controls.TreeNode nodeTree = (ims.framework.controls.TreeNode) form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode();
while( nodeTree.getParent() != null)
nodeTree = nodeTree.getParent(); //get the parent (service node)
ServiceVoLiteVo service = (ServiceVoLiteVo) nodeTree.getValue();
if(service != null && contVo.getServiceIsNotNull() && service.getID_ServiceIsNotNull() && service.getID_Service().equals(contVo.getService().getID_Service()))
{
if(contVo.getLocation() == null)
{
tempColl.get(i).setLocation(tempVo);
form.getLocalContext().setServiceAndLocation(tempColl);
return true;
}
}
}
}
return false;
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:34,代码来源:Logic.java
示例6: checkIfLocationIsConectedToService
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private boolean checkIfLocationIsConectedToService(ConfigLocationLiteVo tempVo)
{
if(tempVo == null)
throw new CodingRuntimeException();
ContractServiceLocationsConfigVoCollection tempColl = form.getLocalContext().getServiceAndLocation();
if(tempColl == null || tempColl.size() == 0)
return false;
for(int i = 0;i<tempColl.size();i++)
{
ContractServiceLocationsConfigVo contVo = tempColl.get(i);
if(contVo == null || contVo.getLocation() == null)
continue;
if(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue()!= null )
{
ims.framework.controls.TreeNode nodeTree = (ims.framework.controls.TreeNode) form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode();
while( nodeTree.getParent() != null)
nodeTree = nodeTree.getParent(); //get the parent (service node)
ServiceVoLiteVo service = (ServiceVoLiteVo) nodeTree.getValue();
if(service != null && contVo.getServiceIsNotNull() && service.getID_ServiceIsNotNull() && service.getID_Service().equals(contVo.getService().getID_Service()))
{
if(tempVo.getID_LocationIsNotNull() && tempVo.getID_Location().equals(contVo.getLocation().getID_Location()))
return true;
}
}
}
return false;
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:32,代码来源:Logic.java
示例7: updateMenuContext
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private void updateMenuContext()
{
if(form.getMode().equals(FormMode.VIEW))
{
form.getContextMenus().RefMan.hideAllServiceLocationMenuMenuItems();
form.getContextMenus().RefMan.hideAllCCGContextMenuMenuItems(); //wdev-18409
}
else
{
//WDEV-20181
form.getContextMenus().RefMan.getServiceLocationMenuAddServiceItem().setVisible(true);
form.getContextMenus().RefMan.getServiceLocationMenuAddLocationItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && (form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue() instanceof ServiceLiteVo || form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue() instanceof ConfigLocationLiteVo));
form.getContextMenus().RefMan.getServiceLocationMenuRemoveServiceItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue() instanceof ServiceLiteVo );
form.getContextMenus().RefMan.getServiceLocationMenuRemoveLocationItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue() instanceof ConfigLocationLiteVo);
//WDEV-20945
form.getContextMenus().RefMan.getServiceLocationMenuAddEditServiceKpiItem().setVisible(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue() instanceof ServiceLiteVo);
//wdev-18409
form.getContextMenus().RefMan.hideAllCCGContextMenuMenuItems();
form.getContextMenus().RefMan.getCCGContextMenuADDItem().setVisible(true);
form.getContextMenus().RefMan.getCCGContextMenuEDITItem().setVisible(form.ctnDetails().lyrDetails().tabPageCCG().grdCCG().getSelectedRow() != null &&
form.ctnDetails().lyrDetails().tabPageCCG().grdCCG().getSelectedRow().isReadOnly());//WDEV-18908
form.getContextMenus().RefMan.getCCGContextMenuREMOVEItem().setVisible(form.ctnDetails().lyrDetails().tabPageCCG().grdCCG().getSelectedRow() != null);
//------------
}
}
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:28,代码来源:Logic.java
示例8: setLocInContractServiceLocWithLocNull
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private boolean setLocInContractServiceLocWithLocNull(ConfigLocationLiteVo tempVo)//WDEV-20181
{
if(tempVo == null)
throw new CodingRuntimeException();
ContractServiceLocationsConfigVoCollection tempColl = form.getLocalContext().getServiceAndLocation();
if(tempColl == null || tempColl.size()==0)
return false;
for(int i = 0;i<tempColl.size();i++)
{
ContractServiceLocationsConfigVo contVo = tempColl.get(i);
if(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue()!= null )
{
DynamicGridRow row = form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow();
while( row.getParent() != null)
row = row.getParent(); //get the parent (service node)
ServiceLiteVo service = (ServiceLiteVo) row.getValue();
if(service != null && contVo.getServiceIsNotNull() && service.getID_ServiceIsNotNull() && service.getID_Service().equals(contVo.getService().getID_Service()))
{
if(contVo.getLocation() == null)
{
tempColl.get(i).setLocation(tempVo);
form.getLocalContext().setServiceAndLocation(tempColl);
return true;
}
}
}
}
return false;
}
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:34,代码来源:Logic.java
示例9: checkIfLocationIsConectedToService
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private boolean checkIfLocationIsConectedToService(ConfigLocationLiteVo tempVo) //WDEV-20181
{
if(tempVo == null)
throw new CodingRuntimeException();
ContractServiceLocationsConfigVoCollection tempColl = form.getLocalContext().getServiceAndLocation();
if(tempColl == null || tempColl.size() == 0)
return false;
for(int i = 0;i<tempColl.size();i++)
{
ContractServiceLocationsConfigVo contVo = tempColl.get(i);
if(contVo == null || contVo.getLocation() == null)
continue;
if(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue()!= null )
{
DynamicGridRow row = form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow();
while( row.getParent() != null)
row = row.getParent(); //get the parent (service node)
ServiceLiteVo service = (ServiceLiteVo) row.getValue();
if(service != null && contVo.getServiceIsNotNull() && service.getID_ServiceIsNotNull() && service.getID_Service().equals(contVo.getService().getID_Service()))
{
if(tempVo.getID_LocationIsNotNull() && tempVo.getID_Location().equals(contVo.getLocation().getID_Location()))
return true;
}
}
}
return false;
}
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:32,代码来源:Logic.java
示例10: populateChildsTree
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
void populateChildsTree(ConfigLocationLiteVoCollection tempColl)
{
if(tempColl == null || tempColl.size() == 0)
{
return;
}
for(int i = 0;i < tempColl.size();i++)
{
ConfigLocationLiteVo tempVo = tempColl.get(i);
if(tempVo == null)
continue;
if(checkIfLocationIsConectedToService(tempVo))
continue;
if(setLocInContractServiceLocWithLocNull(tempVo))
continue;
else
{
ContractServiceLocationsConfigVoCollection tempContractColl = form.getLocalContext().getServiceAndLocation();
if(tempContractColl == null)
tempContractColl = new ContractServiceLocationsConfigVoCollection();
if(form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode() != null && form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode().getValue()!= null )
{
ims.framework.controls.TreeNode nodeTree = (ims.framework.controls.TreeNode) form.ctnDetails().lyrDetails().tabPage2().treSericeLocation().getSelectedNode();
while( nodeTree.getParent() != null)
nodeTree = nodeTree.getParent(); //get the parent (service node)
ServiceVoLiteVo service = (ServiceVoLiteVo) nodeTree.getValue();
if(service != null)
{
ContractServiceLocationsConfigVo tempContractVo = new ContractServiceLocationsConfigVo();
tempContractVo.setService(service);
tempContractVo.setLocation(tempVo);
//tempContractVo.setIsActive(Boolean.TRUE);
tempContractColl.add(tempContractVo);
form.getLocalContext().setServiceAndLocation(tempContractColl);
}
}
}
}
}
开发者ID:oopcell,项目名称:AvoinApotti,代码行数:45,代码来源:Logic.java
示例11: populateChildsDynGrid
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
void populateChildsDynGrid(ConfigLocationLiteVoCollection tempColl) //WDEV-20181
{
if(tempColl == null || tempColl.size() == 0)
{
return;
}
for(int i = 0;i < tempColl.size();i++)
{
ConfigLocationLiteVo tempVo = tempColl.get(i);
if(tempVo == null)
continue;
if(checkIfLocationIsConectedToService(tempVo))
continue;
if(setLocInContractServiceLocWithLocNull(tempVo))
continue;
else
{
ContractServiceLocationsConfigVoCollection tempContractColl = form.getLocalContext().getServiceAndLocation();
if(tempContractColl == null)
tempContractColl = new ContractServiceLocationsConfigVoCollection();
if(form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow() != null && form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow().getValue()!= null )
{
DynamicGridRow row = form.ctnDetails().lyrDetails().tabPage2().dyngrdService().getSelectedRow();
while( row.getParent() != null)
row = row.getParent(); //get the parent (service node)
ServiceLiteVo service = (ServiceLiteVo) row.getValue();
if(service != null)
{
ContractServiceLocationsConfigVo tempContractVo = new ContractServiceLocationsConfigVo();
tempContractVo.setService(service);
tempContractVo.setLocation(tempVo);
//tempContractVo.setIsActive(Boolean.TRUE);
tempContractColl.add(tempContractVo);
form.getLocalContext().setServiceAndLocation(tempContractColl);
}
}
}
}
}
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:45,代码来源:Logic.java
示例12: addLocationRow
import ims.admin.vo.ConfigLocationLiteVo; //导入依赖的package包/类
private void addLocationRow(DynamicGridRow parentRow, ConfigLocationLiteVo location)
{
DynamicGridRow locRow = parentRow.getRows().newRow();
locRow.setValue(location);
DynamicGridCell cellService = locRow.getCells().newCell(getColumn(COLUMN_SERVICE_LOCATION), DynamicCellType.STRING);
cellService.setValue(location.getName());
cellService.setReadOnly(true);
}
开发者ID:IMS-MAXIMS,项目名称:openMAXIMS,代码行数:13,代码来源:Logic.java
注:本文中的ims.admin.vo.ConfigLocationLiteVo类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论