/* * The contents of this file are subject to the terms of the Common Development * and Distribution License (the License). You may not use this file except in * compliance with the License. * * You can obtain a copy of the License at http://www.netbeans.org/cddl.html * or http://www.netbeans.org/cddl.txt. * * When distributing Covered Code, include this CDDL Header Notice in each file * and include the License file at http://www.netbeans.org/cddl.txt. * If applicable, add the following below the CDDL Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" */ package com.nanosn.netbeans.gwtxml.ui.gwtmodule; import com.nanosn.netbeans.gwtxml.GwtXmlDataObject; import javax.swing.JComponent; import org.netbeans.modules.xml.multiview.ui.SectionInnerPanel; import org.netbeans.modules.xml.multiview.ui.SectionView; /** * * @author selkhateeb */ public class PackagesPanel extends SectionInnerPanel { private static final long serialVersionUID = 1; /** Creates new form PackagesPanel */ public PackagesPanel(SectionView view, GwtXmlDataObject dObj) { super(view); 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() { org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(0, 400, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(0, 300, Short.MAX_VALUE) ); }// </editor-fold>//GEN-END:initComponents // <editor-fold desc="SectionInnerPanel Interface"> @Override public void setValue(JComponent arg0, Object arg1) { } public void linkButtonPressed(Object arg0, String arg1) { } public JComponent getErrorComponent(String arg0) { return null; } // </editor-fold> // <editor-fold defaultstate="collapsed" desc="Variables Declaration"> // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables // </editor-fold> }