Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 75444 invoked from network); 30 Aug 2004 15:44:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 30 Aug 2004 15:44:32 -0000 Received: (qmail 21420 invoked by uid 500); 30 Aug 2004 15:44:28 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 21191 invoked by uid 500); 30 Aug 2004 15:44:26 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 21178 invoked by uid 500); 30 Aug 2004 15:44:26 -0000 Received: (qmail 21175 invoked by uid 99); 30 Aug 2004 15:44:26 -0000 X-ASF-Spam-Status: No, hits=-2.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.27.1) with SMTP; Mon, 30 Aug 2004 08:44:26 -0700 Received: (qmail 75276 invoked by uid 1289); 30 Aug 2004 15:44:24 -0000 Date: 30 Aug 2004 15:44:24 -0000 Message-ID: <20040830154424.75275.qmail@minotaur.apache.org> From: rdonkin@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/recursion AlienBean.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rdonkin 2004/08/30 08:44:24 Added: betwixt/src/test/org/apache/commons/betwixt/recursion AlienBean.java Log: Another id generation test case, trying to see if issuee #28372 still exists Revision Changes Path 1.1 jakarta-commons/betwixt/src/test/org/apache/commons/betwixt/recursion/AlienBean.java Index: AlienBean.java =================================================================== /* * Copyright 2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.betwixt.recursion; /** * @author Jakarta Commons Team, Apache Software Foundation */ public class AlienBean { private NameBean name; public AlienBean() {} public AlienBean(NameBean name) { setName(name); } public NameBean getName() { return name; } public void setName(NameBean name) { this.name = name; } } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org