blob: a2e12483dc669fdd024ab762e9c060bbf51ee437 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.netbeans.modules.findbugs.installer;
import org.netbeans.modules.autoupdate.ui.api.PluginManager;
import org.openide.util.Exceptions;
import org.openide.util.NbBundle.Messages;
final class FindBugsPanel extends javax.swing.JPanel {
private final FindBugsOptionsPanelController controller;
FindBugsPanel(FindBugsOptionsPanelController controller) {
this.controller = controller;
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.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel2 = new javax.swing.JLabel();
install = new javax.swing.JButton();
org.openide.awt.Mnemonics.setLocalizedText(jLabel2, org.openide.util.NbBundle.getMessage(FindBugsPanel.class, "FindBugsPanel.jLabel2.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(install, org.openide.util.NbBundle.getMessage(FindBugsPanel.class, "FindBugsPanel.install.text")); // NOI18N
install.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
installActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(install)
.addGap(0, 273, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(install))
.addGap(0, 395, Short.MAX_VALUE))
);
}// </editor-fold>//GEN-END:initComponents
@Messages("FindBugs_Library=FindBugs Library")
private void installActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_installActionPerformed
PluginManager.installSingle("org.netbeans.modules.findbugs", Bundle.FindBugs_Library());
}//GEN-LAST:event_installActionPerformed
void load() {
}
void store() {
}
boolean valid() {
// TODO check whether form is consistent and complete
return true;
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton install;
private javax.swing.JLabel jLabel2;
// End of variables declaration//GEN-END:variables
}