org.netbeans.modules.maven.codegen.NewProfilePanel Maven / Gradle / Ivy
/*
* 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.maven.codegen;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import static org.netbeans.modules.maven.codegen.Bundle.*;
import org.netbeans.modules.maven.model.pom.POMModel;
import org.netbeans.modules.maven.model.pom.Profile;
import org.openide.DialogDescriptor;
import org.openide.NotificationLineSupport;
import org.openide.awt.Mnemonics;
import org.openide.util.NbBundle;
/**
*
* @author mkleint
*/
@NbBundle.Messages({"NewProfilePanel_cbPlugins_text2=&Generate Plugins section",
"NewProfilePanel_cbDependencies_text2=Generate &Dependencies section"})
public class NewProfilePanel extends javax.swing.JPanel {
private POMModel model;
private NotificationLineSupport nls;
public NewProfilePanel(POMModel model) {
initComponents();
this.model = model;
boolean pomPackaging = "pom".equals(model.getProject().getPackaging()); //NOI18N
if (!pomPackaging) {
Mnemonics.setLocalizedText(cbPlugins, NewProfilePanel_cbPlugins_text2()); // NOI18N
Mnemonics.setLocalizedText(cbDependencies, NewProfilePanel_cbDependencies_text2()); // NOI18N
}
txtId.getDocument().addDocumentListener(new DocumentListener() {
@Override
public void insertUpdate(DocumentEvent e) {
checkId();
}
@Override
public void removeUpdate(DocumentEvent e) {
checkId();
}
@Override
public void changedUpdate(DocumentEvent e) {
checkId();
}
});
}
/** For gaining access to DialogDisplayer instance to manage
* warning messages
*/
public void attachDialogDisplayer(DialogDescriptor dd) {
nls = dd.getNotificationLineSupport();
if (nls == null) {
nls = dd.createNotificationLineSupport();
}
}
@Override
public void addNotify() {
super.addNotify();
assert nls != null : " The notificationLineSupport was not attached to the panel."; //NOI18N
}
private void checkId() {
String id = txtId.getText().trim();
Profile existing = model.getProject().findProfileById(id);
if (existing != null) {
nls.setErrorMessage(NbBundle.getMessage(NewProfilePanel.class, "ERR_SameProfileId"));
} else {
nls.clearMessages();
}
}
/** 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")
// //GEN-BEGIN:initComponents
private void initComponents() {
lblId = new javax.swing.JLabel();
txtId = new javax.swing.JTextField();
cbActProperty = new javax.swing.JCheckBox();
cbActOS = new javax.swing.JCheckBox();
cbActFile = new javax.swing.JCheckBox();
cbPlugins = new javax.swing.JCheckBox();
cbDependencies = new javax.swing.JCheckBox();
lblId.setLabelFor(txtId);
org.openide.awt.Mnemonics.setLocalizedText(lblId, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.lblId.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(cbActProperty, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.cbActProperty.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(cbActOS, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.cbActOS.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(cbActFile, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.cbActFile.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(cbPlugins, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.cbPlugins.text")); // NOI18N
org.openide.awt.Mnemonics.setLocalizedText(cbDependencies, org.openide.util.NbBundle.getMessage(NewProfilePanel.class, "NewProfilePanel.cbDependencies.text")); // NOI18N
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(cbDependencies)
.addComponent(cbPlugins)
.addComponent(cbActFile)
.addComponent(cbActOS)
.addComponent(cbActProperty)
.addGroup(layout.createSequentialGroup()
.addComponent(lblId)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(txtId, javax.swing.GroupLayout.DEFAULT_SIZE, 234, Short.MAX_VALUE)))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(lblId)
.addComponent(txtId, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addComponent(cbActProperty)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cbActOS)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cbActFile)
.addGap(18, 18, 18)
.addComponent(cbPlugins)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(cbDependencies)
.addContainerGap(64, Short.MAX_VALUE))
);
}// //GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JCheckBox cbActFile;
private javax.swing.JCheckBox cbActOS;
private javax.swing.JCheckBox cbActProperty;
private javax.swing.JCheckBox cbDependencies;
private javax.swing.JCheckBox cbPlugins;
private javax.swing.JLabel lblId;
private javax.swing.JTextField txtId;
// End of variables declaration//GEN-END:variables
String getProfileId() {
return txtId.getText();
}
boolean isActivation() {
return isActiovationByFile() || isActiovationByOS() || isActiovationByProperty();
}
boolean isActiovationByProperty() {
return cbActProperty.isSelected();
}
boolean isActiovationByOS() {
return cbActOS.isSelected();
}
boolean isActiovationByFile() {
return cbActFile.isSelected();
}
boolean generateDependencies() {
return cbDependencies.isSelected();
}
boolean generatePlugins() {
return cbPlugins.isSelected();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy