Source code: com/pjsofts/eurobudget/editors/PeriodicEditor.java
1 /*
2 * PeriodicEditor.java
3 *
4 * Created on 17 avril 2002, 12:24
5 */
6
7 package com.pjsofts.eurobudget.editors;
8
9 import com.pjsofts.eurobudget.EBConstants;
10 import java.util.ResourceBundle;
11 import javax.swing.JPanel;
12
13 /**
14 * Scenario of creation of a period txn:
15 * <pre>
16 * 1) Type ? Credit, Debit, Virement, Placement
17 * 2) Period ? once, daily, weekly, .... (&first date)
18 * 3) Paiement ? Depot, virement, versement, prelevement automatique (tip) ?
19 * 4) Amount ? Fixed, Variable ?
20 * 5) First Transaction to fill
21 *</pre>
22 * @author pj
23 */
24 public class PeriodicEditor extends JPanel {
25
26 private static final ResourceBundle i8n = EBConstants.i18n;
27
28 /** Creates new form PeriodicEditor */
29 public PeriodicEditor() {
30 initComponents();
31 }
32
33 /** This method is called from within the constructor to
34 * initialize the form.
35 * WARNING: Do NOT modify this code. The content of this method is
36 * always regenerated by the Form Editor.
37 */
38 private void initComponents() {//GEN-BEGIN:initComponents
39
40 setLayout(new java.awt.BorderLayout());
41
42 }//GEN-END:initComponents
43
44
45 // Variables declaration - do not modify//GEN-BEGIN:variables
46 // End of variables declaration//GEN-END:variables
47
48 }
49