From scm-return-8055-apmail-geronimo-scm-archive=geronimo.apache.org@geronimo.apache.org Mon Oct 03 14:50:55 2005 Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 6739 invoked from network); 3 Oct 2005 14:50:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Oct 2005 14:50:55 -0000 Received: (qmail 41655 invoked by uid 500); 3 Oct 2005 14:50:54 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 41634 invoked by uid 500); 3 Oct 2005 14:50:54 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 41623 invoked by uid 99); 3 Oct 2005 14:50:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Oct 2005 07:50:53 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 03 Oct 2005 07:50:58 -0700 Received: (qmail 6422 invoked by uid 65534); 3 Oct 2005 14:50:32 -0000 Message-ID: <20051003145032.6418.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r293362 - in /geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections: ConnectorGeneralSection.java OpenEjbJarGeneralSection.java Date: Mon, 03 Oct 2005 14:50:32 -0000 To: scm@geronimo.apache.org From: sppatel@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sppatel Date: Mon Oct 3 07:50:28 2005 New Revision: 293362 URL: http://svn.apache.org/viewcvs?rev=293362&view=rev Log: implement and call createClient Modified: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/ConnectorGeneralSection.java geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/OpenEjbJarGeneralSection.java Modified: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/ConnectorGeneralSection.java URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/ConnectorGeneralSection.java?rev=293362&r1=293361&r2=293362&view=diff ============================================================================== --- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/ConnectorGeneralSection.java (original) +++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/ConnectorGeneralSection.java Mon Oct 3 07:50:28 2005 @@ -21,6 +21,7 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.forms.widgets.FormToolkit; +import org.eclipse.ui.forms.widgets.Section; public class ConnectorGeneralSection extends CommonGeneralSection { @@ -30,6 +31,11 @@ int style, EObject plan) { super(parent, toolkit, style, plan); this.plan = (ConnectorType) plan; + createClient(getSection(), toolkit); + } + + private void createClient(Section section, FormToolkit toolkit) { + createConfigAndParentComposite(section, toolkit); } /* Modified: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/OpenEjbJarGeneralSection.java URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/OpenEjbJarGeneralSection.java?rev=293362&r1=293361&r2=293362&view=diff ============================================================================== --- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/OpenEjbJarGeneralSection.java (original) +++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.ui/src/org/apache/geronimo/ui/sections/OpenEjbJarGeneralSection.java Mon Oct 3 07:50:28 2005 @@ -19,6 +19,7 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.forms.widgets.FormToolkit; +import org.eclipse.ui.forms.widgets.Section; import org.openejb.xml.ns.openejb.jar.JarPackage; import org.openejb.xml.ns.openejb.jar.OpenejbJarType; @@ -30,6 +31,11 @@ int style, EObject plan) { super(parent, toolkit, style, plan); this.plan = (OpenejbJarType) plan; + createClient(getSection(), toolkit); + } + + private void createClient(Section section, FormToolkit toolkit) { + createConfigAndParentComposite(section, toolkit); } /*