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