/* * Copyright 2013 Serdar. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.fub.maps.gpx.analysis.ui; import java.beans.PropertyVetoException; import org.openide.explorer.ExplorerManager; import org.openide.nodes.FilterNode; import org.openide.nodes.Node; import org.openide.util.Exceptions; /** * * @author Serdar */ public final class StatisticForm extends javax.swing.JPanel implements ExplorerManager.Provider { private static final long serialVersionUID = 1L; private final ExplorerManager explorerManager = new ExplorerManager(); /** * Creates new form StatisticForm */ public StatisticForm() { initComponents(); propertySheetView1.setDescriptionAreaVisible(true); } public StatisticForm(Node node) { this(); setNode(node); } public void setNode(Node node) { if (node == null) { node = Node.EMPTY; } node = new FilterNode(node); explorerManager.setRootContext(node); try { explorerManager.setSelectedNodes(new Node[]{node}); } catch (PropertyVetoException ex) { Exceptions.printStackTrace(ex); } } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { propertySheetView1 = new org.openide.explorer.propertysheet.PropertySheetView(); setLayout(new java.awt.BorderLayout()); propertySheetView1.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(204, 204, 204))); add(propertySheetView1, java.awt.BorderLayout.CENTER); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private org.openide.explorer.propertysheet.PropertySheetView propertySheetView1; // End of variables declaration//GEN-END:variables @Override public ExplorerManager getExplorerManager() { return explorerManager; } }