mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 23:48:28 +01:00
59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
|
/**
|
||
|
* EGroupware - Notifications Java Desktop App
|
||
|
*
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
* @package notifications
|
||
|
* @subpackage jdesk
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Stefan Werfling <stefan.werfling@hw-softwareentwicklung.de>
|
||
|
* @author Maik Hüttner <maik.huettner@hw-softwareentwicklung.de>
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* egwAbout.java
|
||
|
*
|
||
|
* Created on 11.12.2010, 00:32:35
|
||
|
*/
|
||
|
|
||
|
package egroupwaretray;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author Stefan Werfling <stefan.werfling@hw-softwareentwicklung.de>
|
||
|
*/
|
||
|
public class egwAbout extends javax.swing.JPanel {
|
||
|
|
||
|
/** Creates new form egwAbout */
|
||
|
public egwAbout() {
|
||
|
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() {
|
||
|
|
||
|
setName("Form"); // NOI18N
|
||
|
|
||
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
||
|
this.setLayout(layout);
|
||
|
layout.setHorizontalGroup(
|
||
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||
|
.addGap(0, 400, Short.MAX_VALUE)
|
||
|
);
|
||
|
layout.setVerticalGroup(
|
||
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||
|
.addGap(0, 300, Short.MAX_VALUE)
|
||
|
);
|
||
|
}// </editor-fold>//GEN-END:initComponents
|
||
|
|
||
|
|
||
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||
|
// End of variables declaration//GEN-END:variables
|
||
|
|
||
|
}
|