/***********************************************************************
This file is part of KEEL-software, the Data Mining tool for regression,
classification, clustering, pattern mining and so on.
Copyright (C) 2004-2010
F. Herrera (herrera@decsai.ugr.es)
L. S�nchez (luciano@uniovi.es)
J. Alcal�-Fdez (jalcala@decsai.ugr.es)
S. Garc�a (sglopez@ujaen.es)
A. Fern�ndez (alberto.fernandez@ujaen.es)
J. Luengo (julianlm@decsai.ugr.es)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
**********************************************************************/
/*
* Container.java
*
* Created on 8 de abril de 2010, 23:15
*/
package keel.GraphInterKeel.experiments;
import java.awt.Color;
/**
*
* @author tua
*/
public class Container extends javax.swing.JDialog {
/** Creates new form Container */
public Container(java.awt.Frame parent, boolean modal,String title,String[] names, int n) {
super(parent, modal);
initComponents();
this.setTitle(title);
if(n==Node.C_LQD)
this.jScrollPane2.setBorder(javax.swing.BorderFactory.createLineBorder(Color.blue));
else if(n==Node.LQD)
this.jScrollPane2.setBorder(javax.swing.BorderFactory.createLineBorder(Color.orange));
else if(n==Node.LQD_C)
this.jScrollPane2.setBorder(javax.swing.BorderFactory.createLineBorder(Color.yellow));
else if(n==Node.CRISP2)
this.jScrollPane2.setBorder(javax.swing.BorderFactory.createLineBorder(Color.darkGray));
this.jList1.setListData(names);
}
/** 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() {
jScrollPane2 = new javax.swing.JScrollPane();
jList1 = new javax.swing.JList();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
setName("Form"); // NOI18N
org.jdesktop.application.ResourceMap resourceMap = org.jdesktop.application.Application.getInstance(keel.GraphInterKeel.datacf.DataCFApp.class).getContext().getResourceMap(Container.class);
jScrollPane2.setBackground(resourceMap.getColor("jScrollPane2.background")); // NOI18N
jScrollPane2.setBorder(javax.swing.BorderFactory.createLineBorder(resourceMap.getColor("jScrollPane2.border.lineColor"), 2)); // NOI18N
jScrollPane2.setFont(resourceMap.getFont("jScrollPane2.font")); // NOI18N
jScrollPane2.setName("jScrollPane2"); // NOI18N
jList1.setFont(resourceMap.getFont("jList1.font")); // NOI18N
jList1.setModel(new javax.swing.AbstractListModel() {
String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
jList1.setName("jList1"); // NOI18N
jScrollPane2.setViewportView(jList1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 228, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 193, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
String[] names=null;
int n=12;
Container dialog = new Container(new javax.swing.JFrame(), true,"",names, n);
dialog.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
dialog.setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JList jList1;
private javax.swing.JScrollPane jScrollPane2;
// End of variables declaration//GEN-END:variables
}