001/**
002 * Copyright (c) 2014-2015 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 DigiMesh 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 DigiPointNetwork
021 * @see Raw802Network
022 * @see XBeeNetwork
023 * @see ZigBeeNetwork
024 */
025public class DigiMeshNetwork extends XBeeNetwork {
026
027        /**
028         * Instantiates a new DigiMesh Network object.
029         * 
030         * @param device Local DigiMesh device to get the network from.
031         * 
032         * @throws NullPointerException if {@code device == null}.
033         * 
034         * @see DigiMeshDevice
035         */
036        DigiMeshNetwork(DigiMeshDevice device) {
037                super(device);
038        }
039}