Example #1
0
 /**
  * Returns the devices in this region.
  *
  * @return the devices in this region
  */
 public Set<UiDevice> devices() {
   return topology.deviceSet(deviceIds);
 }
Example #2
0
 /**
  * Returns the hosts in this region.
  *
  * @return the hosts in this region
  */
 public Set<UiHost> hosts() {
   return topology.hostSet(hostIds);
 }
Example #3
0
 /**
  * Returns the UI region that is the parent of this region.
  *
  * @return the parent region
  */
 public UiRegion parentRegion() {
   return topology.findRegion(parent);
 }