use of org.netxms.ui.eclipse.dashboard.dialogs.helpers.ObjectIdMatchingData in project netxms by netxms.
the class StatusIndicatorConfig method remapObjects.
/* (non-Javadoc)
* @see org.netxms.ui.eclipse.dashboard.widgets.internal.DashboardElementConfig#remapObjects(java.util.Map)
*/
@Override
public void remapObjects(Map<Long, ObjectIdMatchingData> remapData) {
super.remapObjects(remapData);
ObjectIdMatchingData md = remapData.get(objectId);
if (md != null)
objectId = md.dstId;
}
use of org.netxms.ui.eclipse.dashboard.dialogs.helpers.ObjectIdMatchingData in project netxms by netxms.
the class SyslogMonitorConfig method remapObjects.
/*
* (non-Javadoc)
*
* @see org.netxms.ui.eclipse.dashboard.widgets.internal.DashboardElementConfig#remapObjects(java.util.Map)
*/
@Override
public void remapObjects(Map<Long, ObjectIdMatchingData> remapData) {
super.remapObjects(remapData);
ObjectIdMatchingData md = remapData.get(objectId);
if (md != null)
objectId = md.dstId;
}
use of org.netxms.ui.eclipse.dashboard.dialogs.helpers.ObjectIdMatchingData in project netxms by netxms.
the class TableComparisonChartConfig method remapObjects.
/* (non-Javadoc)
* @see org.netxms.ui.eclipse.dashboard.widgets.internal.DashboardElementConfig#remapObjects(java.util.Map)
*/
@Override
public void remapObjects(Map<Long, ObjectIdMatchingData> remapData) {
super.remapObjects(remapData);
ObjectIdMatchingData md = remapData.get(nodeId);
if (md != null)
nodeId = md.dstId;
}
use of org.netxms.ui.eclipse.dashboard.dialogs.helpers.ObjectIdMatchingData in project netxms by netxms.
the class AlarmViewerConfig method remapObjects.
/* (non-Javadoc)
* @see org.netxms.ui.eclipse.dashboard.widgets.internal.DashboardElementConfig#remapObjects(java.util.Map)
*/
@Override
public void remapObjects(Map<Long, ObjectIdMatchingData> remapData) {
super.remapObjects(remapData);
ObjectIdMatchingData md = remapData.get(objectId);
if (md != null)
objectId = md.dstId;
}
use of org.netxms.ui.eclipse.dashboard.dialogs.helpers.ObjectIdMatchingData in project netxms by netxms.
the class DciSummaryTableConfig method remapObjects.
/* (non-Javadoc)
* @see org.netxms.ui.eclipse.dashboard.widgets.internal.DashboardElementConfig#remapObjects(java.util.Map)
*/
@Override
public void remapObjects(Map<Long, ObjectIdMatchingData> remapData) {
super.remapObjects(remapData);
ObjectIdMatchingData md = remapData.get(baseObjectId);
if (md != null)
baseObjectId = md.dstId;
}
Aggregations