Return-Path: Delivered-To: apmail-myfaces-dev-archive@www.apache.org Received: (qmail 11639 invoked from network); 27 Oct 2005 07:48:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Oct 2005 07:48:37 -0000 Received: (qmail 21289 invoked by uid 500); 27 Oct 2005 07:48:35 -0000 Delivered-To: apmail-myfaces-dev-archive@myfaces.apache.org Received: (qmail 21244 invoked by uid 500); 27 Oct 2005 07:48:35 -0000 Mailing-List: contact dev-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list dev@myfaces.apache.org Received: (qmail 21232 invoked by uid 99); 27 Oct 2005 07:48:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2005 00:48:34 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of mbroekelmann@googlemail.com designates 64.233.184.205 as permitted sender) Received: from [64.233.184.205] (HELO wproxy.gmail.com) (64.233.184.205) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Oct 2005 00:48:31 -0700 Received: by wproxy.gmail.com with SMTP id i28so118253wra for ; Thu, 27 Oct 2005 00:48:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=oD7dhksNpmCy9FBDZtAREtCq/ESdIWGPOE9m7rBM4DSCj5w8wLPat/u//feq2cU8Lpk4L0iLXTSjTCDBnOzQn2fwGQhT3qpKLiuadDEYXI6k19r7aty4QXZ1Ljdb+ayH7tsSGPhFqV0obKHxMWnI6vXUDzsH1Dkx+UFRyZZKBlc= Received: by 10.54.144.3 with SMTP id r3mr857976wrd; Thu, 27 Oct 2005 00:48:12 -0700 (PDT) Received: by 10.54.76.19 with HTTP; Thu, 27 Oct 2005 00:48:12 -0700 (PDT) Message-ID: <9eb65db00510270048k3c194e51k@mail.gmail.com> Date: Thu, 27 Oct 2005 09:48:12 +0200 From: =?ISO-8859-1?Q?Mathias_Br=F6kelmann?= To: MyFaces Development , Travis Reeder Subject: Re: svn commit: r328766 - /myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java In-Reply-To: <20051027000014.29134.qmail@minotaur.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20051027000014.29134.qmail@minotaur.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Travis, we can=B4t define this. Since UIComponentBase is a class of the spec. 2005/10/27, prophecy@apache.org : > Author: prophecy > Date: Wed Oct 26 17:00:12 2005 > New Revision: 328766 > > URL: http://svn.apache.org/viewcvs?rev=3D328766&view=3Drev > Log: > Fixed autoUpdateDataTable to work in IE. > > Modified: > myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java > > Modified: myfaces/api/trunk/src/java/javax/faces/component/UIComponentBas= e.java > URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces= /component/UIComponentBase.java?rev=3D328766&r1=3D328765&r2=3D328766&view= =3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java= (original) > +++ myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java= Wed Oct 26 17:00:12 2005 > @@ -51,6 +51,7 @@ > private List _facesListeners =3D null; > private String _clientId =3D null; > private String _id =3D null; > + private Boolean _forceId =3D null; > private UIComponent _parent =3D null; > private boolean _transient =3D false; > > @@ -160,6 +161,17 @@ > isIdValid(id); > _id =3D id; > _clientId =3D null; > + } > + > + > + public Boolean getForceId() > + { > + return _forceId; > + } > + > + public void setForceId(Boolean _forceId) > + { > + this._forceId =3D _forceId; > } > > public UIComponent getParent() > > > -- Mathias