/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.ptc.tifworkbench.ui; /** * * @author pbowden */ public class TifCheckFrame extends javax.swing.JInternalFrame { /** * Creates new form TifCheckFrame */ public TifCheckFrame(String report) { initComponents(); checkTextArea.setText(report); } /** * 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() { scrollPane = new javax.swing.JScrollPane(); checkTextArea = new javax.swing.JTextArea(); setClosable(true); setIconifiable(true); setMaximizable(true); setResizable(true); setTitle("TIF Check"); checkTextArea.setColumns(20); checkTextArea.setFont(new java.awt.Font("Calibri", 0, 12)); // NOI18N checkTextArea.setRows(5); scrollPane.setViewportView(checkTextArea); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(scrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 387, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(scrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 372, Short.MAX_VALUE) ); pack(); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JTextArea checkTextArea; private javax.swing.JScrollPane scrollPane; // End of variables declaration//GEN-END:variables }