001/** 002 * Copyright (c) 2014 Digi International Inc., 003 * All rights not expressly granted are reserved. 004 * 005 * This Source Code Form is subject to the terms of the Mozilla Public 006 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 007 * You can obtain one at http://mozilla.org/MPL/2.0/. 008 * 009 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343 010 * ======================================================================= 011 */ 012package com.digi.xbee.api; 013 014/** 015 * This class represents a DigiPoint Network. 016 * 017 * <p>The network allows the discovery of remote devices in the same network 018 * as the local one and stores them.</p> 019 * 020 * @see DigiMeshNetwork 021 * @see Raw802Network 022 * @see XBeeNetwork 023 * @see ZigBeeNetwork 024 */ 025public class DigiPointNetwork extends XBeeNetwork { 026 027 /** 028 * Instantiates a new DigiPoint Network object. 029 * 030 * @param device Local DigiPoint device to get the network from. 031 * 032 * @throws NullPointerException if {@code device == null}. 033 * 034 * @see DigiPointDevice 035 */ 036 DigiPointNetwork(DigiPointDevice device) { 037 super(device); 038 } 039}