/* * 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 tr.gov.turkiye.esignuidesk.view.container; import javax.swing.JPanel; import tr.gov.turkiye.esignuidesk.config.Config; /** * * @author iakpolat */ public class MainFrame extends javax.swing.JFrame { /** * Creates new form Main */ public MainFrame() { initComponents(); setBounds(Config.FRAME_STARTING_X, Config.FRAME_STARTING_Y, Config.FRAME_WIDTH, Config.FRAME_HEIGHT); } /** * 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() { setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("ESignUI-SwingAPP"); getContentPane().setLayout(null); pack(); }// </editor-fold>//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables }