01: /*
02: * ParseContentVisualPanel.java
03: *
04: * Created on April 4, 2007, 12:39 PM
05: */
06:
07: package org.netbeans.modules.mashup.db.ui.wizard;
08:
09: import net.java.hulp.i18n.Logger;
10: import org.netbeans.modules.etl.logger.Localizer;
11: import org.netbeans.modules.etl.logger.LogUtil;
12:
13: /**
14: *
15: * @author karthikeyan s
16: */
17: public class ParseContentVisualPanel extends javax.swing.JPanel {
18:
19: private ParseContentPanel owner;
20: private static transient final Logger mLogger = LogUtil
21: .getLogger(ParseContentVisualPanel.class.getName());
22: private static transient final Localizer mLoc = Localizer.get();
23:
24: /** Creates new form ParseContentVisualPanel */
25: public ParseContentVisualPanel(ParseContentPanel panel) {
26: initComponents();
27: owner = panel;
28: }
29:
30: public String getName() {
31: String nbBundle1 = mLoc.t("PRSR001: Import Table MetaData");
32: return Localizer.parse(nbBundle1);
33: }
34:
35: /** This method is called from within the constructor to
36: * initialize the form.
37: * WARNING: Do NOT modify this code. The content of this method is
38: * always regenerated by the Form Editor.
39: */
40: // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
41: private void initComponents() {
42:
43: org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(
44: this );
45: this .setLayout(layout);
46: layout
47: .setHorizontalGroup(layout
48: .createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
49: //.addGap(0, 400, Short.MAX_VALUE)
50: );
51: layout
52: .setVerticalGroup(layout
53: .createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
54: //.addGap(0, 300, Short.MAX_VALUE)
55: );
56: }// </editor-fold>//GEN-END:initComponents
57:
58: // Variables declaration - do not modify//GEN-BEGIN:variables
59: // End of variables declaration//GEN-END:variables
60:
61: }
|