001/*****************************************************************************
002 * Copyright by The HDF Group.                                               *
003 * Copyright by the Board of Trustees of the University of Illinois.         *
004 * All rights reserved.                                                      *
005 *                                                                           *
006 * This file is part of the HDF Java Products distribution.                  *
007 * The full copyright notice, including terms governing use, modification,   *
008 * and redistribution, is contained in the files COPYING and Copyright.html. *
009 * COPYING can be found at the root of the source code distribution tree.    *
010 * Or, see https://support.hdfgroup.org/products/licenses.html               *
011 * If you do not have access to either file, you may request a copy from     *
012 * help@hdfgroup.org.                                                        *
013 ****************************************************************************/
014
015package hdf.view.TableView;
016
017import java.util.HashMap;
018
019import hdf.view.DataView.DataViewManager;
020
021public class DefaultScalarAttributeTableView extends DefaultScalarDSTableView implements TableView {
022
023    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(DefaultScalarAttributeTableView.class);
024
025    public DefaultScalarAttributeTableView(DataViewManager theView) {
026        this(theView, null);
027    }
028
029    @SuppressWarnings("rawtypes")
030    public DefaultScalarAttributeTableView(DataViewManager theView, HashMap dataPropertiesMap) {
031        super(theView, dataPropertiesMap);
032    }
033}