blob: 4e54ace9312afa78070cadf3f1009d363bf4dc24 [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.cordova.platforms;
import org.netbeans.api.options.OptionsDisplayer;
/**
*
* @author Jan Becicka
*/
public class MobilePlatformsSetup extends javax.swing.JPanel {
/**
* Creates new form MobilePlatformsSetup
*/
public MobilePlatformsSetup() {
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() {
mobilePlatformsLabel = new javax.swing.JLabel();
mobilePlatforms = new javax.swing.JButton();
org.openide.awt.Mnemonics.setLocalizedText(mobilePlatformsLabel, org.openide.util.NbBundle.getMessage(MobilePlatformsSetup.class, "MobilePlatformsSetup.mobilePlatformsLabel.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(mobilePlatforms, org.openide.util.NbBundle.getMessage(MobilePlatformsSetup.class, "MobilePlatformsSetup.mobilePlatforms.text")); // NOI18N
mobilePlatforms.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mobilePlatformsActionPerformed(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()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER)
.addComponent(mobilePlatformsLabel)
.addComponent(mobilePlatforms))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(mobilePlatformsLabel)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(mobilePlatforms)
.addGap(0, 0, 0))
);
}// </editor-fold>//GEN-END:initComponents
private void mobilePlatformsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mobilePlatformsActionPerformed
OptionsDisplayer.getDefault().open("Html5/MobilePlatforms");//NOI18N
}//GEN-LAST:event_mobilePlatformsActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton mobilePlatforms;
private javax.swing.JLabel mobilePlatformsLabel;
// End of variables declaration//GEN-END:variables
}