/* * 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.project.detector.ui; import de.fub.utilsmodule.components.CustomListView; import javax.swing.JLabel; import org.openide.explorer.ExplorerManager; import org.openide.explorer.view.ListView; /** * * @author Serdar */ public class ListComponent extends javax.swing.JPanel implements ExplorerManager.Provider { private static final long serialVersionUID = 1L; private final ExplorerManager explorerManager = new ExplorerManager(); /** * Creates new form ListComponent */ public ListComponent() { initComponents(); } /** * 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() { title = new javax.swing.JLabel(); listView = new CustomListView(); setLayout(new java.awt.BorderLayout(4, 4)); org.openide.awt.Mnemonics.setLocalizedText(title, org.openide.util.NbBundle.getMessage(ListComponent.class, "ListComponent.title.text")); // NOI18N title.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 4, 1, 4)); add(title, java.awt.BorderLayout.NORTH); listView.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(204, 204, 204))); add(listView, java.awt.BorderLayout.CENTER); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private org.openide.explorer.view.ListView listView; private javax.swing.JLabel title; // End of variables declaration//GEN-END:variables @Override public ExplorerManager getExplorerManager() { return explorerManager; } public JLabel getTitle() { return title; } public ListView getListView() { return listView; } }