|
@@ -1,160 +0,0 @@
|
|
|
-/*
|
|
|
- * To change this license header, choose License Headers in Project Properties.
|
|
|
- * To change this template file, choose Tools | Templates
|
|
|
- * and open the template in the editor.
|
|
|
- */
|
|
|
-package project82usb;
|
|
|
-import project82usb.usbDeviceList.*;
|
|
|
-
|
|
|
-/**
|
|
|
- *
|
|
|
- * @author ilysk
|
|
|
- */
|
|
|
-public class devicesmatrix extends javax.swing.JFrame {
|
|
|
- private final usbDeviceList list = new usbDeviceList();
|
|
|
- /**
|
|
|
- * Creates new form devicesmatrix
|
|
|
- */
|
|
|
- public devicesmatrix() {
|
|
|
- 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() {
|
|
|
-
|
|
|
- jScrollPane1 = new javax.swing.JScrollPane();
|
|
|
- jTable1 = new javax.swing.JTable();
|
|
|
- jScrollPane2 = new javax.swing.JScrollPane();
|
|
|
- tvOut = new javax.swing.JTextArea();
|
|
|
- btnClear = new javax.swing.JButton();
|
|
|
- btnRefresh = new javax.swing.JButton();
|
|
|
-
|
|
|
- setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
|
|
-
|
|
|
- jTable1.setModel(new javax.swing.table.DefaultTableModel(
|
|
|
- new Object [][] {
|
|
|
- {null, null, null, null},
|
|
|
- {null, null, null, null},
|
|
|
- {null, null, null, null},
|
|
|
- {null, null, null, null}
|
|
|
- },
|
|
|
- new String [] {
|
|
|
- "Title 1", "Title 2", "Title 3", "Title 4"
|
|
|
- }
|
|
|
- ));
|
|
|
- jScrollPane1.setViewportView(jTable1);
|
|
|
-
|
|
|
- tvOut.setEditable(false);
|
|
|
- tvOut.setColumns(20);
|
|
|
- tvOut.setRows(5);
|
|
|
- jScrollPane2.setViewportView(tvOut);
|
|
|
-
|
|
|
- btnClear.setText("Clear");
|
|
|
- btnClear.addActionListener(new java.awt.event.ActionListener() {
|
|
|
- public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
- btnClearActionPerformed(evt);
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- btnRefresh.setText("Refresh");
|
|
|
- btnRefresh.addActionListener(new java.awt.event.ActionListener() {
|
|
|
- public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
|
- btnRefreshActionPerformed(evt);
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
|
|
- getContentPane().setLayout(layout);
|
|
|
- layout.setHorizontalGroup(
|
|
|
- layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
- .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
|
|
|
- .addGroup(layout.createSequentialGroup()
|
|
|
- .addContainerGap()
|
|
|
- .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
- .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
|
|
- .addGap(0, 0, Short.MAX_VALUE)
|
|
|
- .addComponent(btnRefresh)
|
|
|
- .addGap(18, 18, 18)
|
|
|
- .addComponent(btnClear))
|
|
|
- .addComponent(jScrollPane2))
|
|
|
- .addContainerGap())
|
|
|
- );
|
|
|
- layout.setVerticalGroup(
|
|
|
- layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
|
- .addGroup(layout.createSequentialGroup()
|
|
|
- .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 126, javax.swing.GroupLayout.PREFERRED_SIZE)
|
|
|
- .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
|
|
- .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 254, Short.MAX_VALUE)
|
|
|
- .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
|
|
- .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
|
|
- .addComponent(btnClear)
|
|
|
- .addComponent(btnRefresh))
|
|
|
- .addContainerGap())
|
|
|
- );
|
|
|
-
|
|
|
- pack();
|
|
|
- }// </editor-fold>//GEN-END:initComponents
|
|
|
-
|
|
|
- private void btnClearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnClearActionPerformed
|
|
|
- this.tvOut.setText("");
|
|
|
- }//GEN-LAST:event_btnClearActionPerformed
|
|
|
-
|
|
|
- private void btnRefreshActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnRefreshActionPerformed
|
|
|
- list.getUsbDeviceList();
|
|
|
- list.printDeviceList(this);
|
|
|
- }//GEN-LAST:event_btnRefreshActionPerformed
|
|
|
-
|
|
|
- /**
|
|
|
- * @param args the command line arguments
|
|
|
- */
|
|
|
- public static void main(String args[]) {
|
|
|
- /* Set the Nimbus look and feel */
|
|
|
- //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
|
|
|
- /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
|
|
|
- * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
|
|
|
- */
|
|
|
- try {
|
|
|
- for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
|
|
|
- if ("Nimbus".equals(info.getName())) {
|
|
|
- javax.swing.UIManager.setLookAndFeel(info.getClassName());
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- } catch (ClassNotFoundException ex) {
|
|
|
- java.util.logging.Logger.getLogger(devicesmatrix.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
- } catch (InstantiationException ex) {
|
|
|
- java.util.logging.Logger.getLogger(devicesmatrix.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
- } catch (IllegalAccessException ex) {
|
|
|
- java.util.logging.Logger.getLogger(devicesmatrix.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
- } catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
|
|
- java.util.logging.Logger.getLogger(devicesmatrix.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
|
|
- }
|
|
|
- //</editor-fold>
|
|
|
-
|
|
|
- /* Create and display the form */
|
|
|
- java.awt.EventQueue.invokeLater(new Runnable() {
|
|
|
- public void run() {
|
|
|
- new devicesmatrix().setVisible(true);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- public void addTextTvOut(String text){
|
|
|
- tvOut.setText(tvOut.getText()+text+"\n");
|
|
|
- }
|
|
|
-
|
|
|
- // Variables declaration - do not modify//GEN-BEGIN:variables
|
|
|
- private javax.swing.JButton btnClear;
|
|
|
- private javax.swing.JButton btnRefresh;
|
|
|
- private javax.swing.JScrollPane jScrollPane1;
|
|
|
- private javax.swing.JScrollPane jScrollPane2;
|
|
|
- private javax.swing.JTable jTable1;
|
|
|
- private javax.swing.JTextArea tvOut;
|
|
|
- // End of variables declaration//GEN-END:variables
|
|
|
-}
|