Return-Path: Delivered-To: apmail-beehive-dev-archive@www.apache.org Received: (qmail 69685 invoked from network); 27 Mar 2006 22:51:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Mar 2006 22:51:42 -0000 Received: (qmail 66738 invoked by uid 500); 27 Mar 2006 22:51:42 -0000 Delivered-To: apmail-beehive-dev-archive@beehive.apache.org Received: (qmail 66460 invoked by uid 500); 27 Mar 2006 22:51:41 -0000 Mailing-List: contact dev-help@beehive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Beehive Developers" Delivered-To: mailing list dev@beehive.apache.org Received: (qmail 66438 invoked by uid 99); 27 Mar 2006 22:51:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 14:51:40 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2006 14:51:40 -0800 Received: from ajax (localhost.localdomain [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id ECD93D49FE for ; Mon, 27 Mar 2006 23:51:18 +0100 (BST) Message-ID: <1970282306.1143499878869.JavaMail.jira@ajax> Date: Mon, 27 Mar 2006 23:51:18 +0100 (BST) From: "Chad Schoettger (JIRA)" To: dev@beehive.apache.org Subject: [jira] Created: (BEEHIVE-1086) controls which implement non-control interfaces may cause compilation errors on overridden methods MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N controls which implement non-control interfaces may cause compilation errors on overridden methods -------------------------------------------------------------------------------------------------- Key: BEEHIVE-1086 URL: http://issues.apache.org/jira/browse/BEEHIVE-1086 Project: Beehive Type: Bug Components: Controls Versions: 1.0.1 Reporter: Chad Schoettger Assigned to: Chad Schoettger Priority: Minor If I have the following, a compilation error will result, due to duplicate methods generated in the control bean during APT processing: ************************************************** public interface ICustomerDao { int countCustomers(); } ************************************************** import org.apache.beehive.controls.system.jdbc.JdbcControl; import org.apache.beehive.controls.api.bean.ControlExtension; @ControlExtension @JdbcControl.ConnectionDataSource(jndiName = "later") public interface CustomerDao extends ICustomerDao, JdbcControl { static final long serialVersionUID = 1L; @JdbcControl.SQL( statement="SELECT count(*) FROM customer" ) public int countCustomers(); } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira