Return-Path: Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: (qmail 16389 invoked from network); 13 Jan 2006 09:10:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Jan 2006 09:10:08 -0000 Received: (qmail 34057 invoked by uid 500); 13 Jan 2006 09:10:06 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 34000 invoked by uid 500); 13 Jan 2006 09:10:05 -0000 Mailing-List: contact commits-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 commits@myfaces.apache.org Received: (qmail 33989 invoked by uid 99); 13 Jan 2006 09:10:05 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jan 2006 01:10:05 -0800 X-ASF-Spam-Status: No, hits=-9.4 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; Fri, 13 Jan 2006 01:10:04 -0800 Received: (qmail 16245 invoked by uid 65534); 13 Jan 2006 09:09:40 -0000 Message-ID: <20060113090940.16201.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r368646 - in /myfaces/tomahawk/trunk: tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/ tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/ tomahawk/src/main/java/org/apache/myfaces/component/html... Date: Fri, 13 Jan 2006 09:08:44 -0000 To: commits@myfaces.apache.org From: baranda@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: baranda Date: Fri Jan 13 01:08:20 2006 New Revision: 368646 URL: http://svn.apache.org/viewcvs?rev=368646&view=rev Log: Added license headers (MYFACES-1022). Thanks to Dennis Byrne Modified: myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/TabbedPaneBean.java myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/GuiUtil.java myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/component/html/util/CallbackListener.java myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlNavigationMenuRendererUtils.java myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeState.java myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeStateBase.java myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/component/html/ext/HtmlSelectManyCheckboxRendererCactus.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRenderCactus.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRendererTest.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKit.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKitFactory.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/TestBean.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/MockResponseWriter.java myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/StylesheetRendererTest.java Modified: myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/TabbedPaneBean.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/TabbedPaneBean.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/TabbedPaneBean.java (original) +++ myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/misc/TabbedPaneBean.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.examples.misc; import java.io.Serializable; Modified: myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/GuiUtil.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/GuiUtil.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/GuiUtil.java (original) +++ myfaces/tomahawk/trunk/tomahawk-examples/simple/src/main/java/org/apache/myfaces/examples/util/GuiUtil.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.examples.util; import javax.faces.context.FacesContext; Modified: myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/component/html/util/CallbackListener.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/component/html/util/CallbackListener.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/component/html/util/CallbackListener.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/component/html/util/CallbackListener.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.component.html.util; /** Modified: myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlNavigationMenuRendererUtils.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlNavigationMenuRendererUtils.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlNavigationMenuRendererUtils.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/navmenu/htmlnavmenu/HtmlNavigationMenuRendererUtils.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,18 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.navmenu.htmlnavmenu; import org.apache.myfaces.renderkit.html.HtmlRendererUtils; Modified: myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeState.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeState.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeState.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeState.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,18 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.tree2; import java.io.Serializable; Modified: myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeStateBase.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeStateBase.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeStateBase.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/custom/tree2/TreeStateBase.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,18 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.tree2; import java.util.HashSet; Modified: myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/main/java/org/apache/myfaces/renderkit/html/ext/HtmlTableRenderer.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.renderkit.html.ext; import java.io.IOException; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/component/html/ext/HtmlSelectManyCheckboxRendererCactus.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/component/html/ext/HtmlSelectManyCheckboxRendererCactus.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/component/html/ext/HtmlSelectManyCheckboxRendererCactus.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/component/html/ext/HtmlSelectManyCheckboxRendererCactus.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.component.html.ext; import java.io.IOException; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRenderCactus.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRenderCactus.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRenderCactus.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRenderCactus.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.date; import java.util.Calendar; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRendererTest.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRendererTest.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRendererTest.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/HtmlDateRendererTest.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.date; import java.util.Calendar; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKit.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKit.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKit.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKit.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.date; import java.io.OutputStream; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKitFactory.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKitFactory.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKitFactory.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/MockHtmlDateRendererTestRenderKitFactory.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.date; import java.util.ArrayList; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/TestBean.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/TestBean.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/TestBean.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/date/TestBean.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.date; import java.util.Date; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/MockResponseWriter.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/MockResponseWriter.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/MockResponseWriter.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/MockResponseWriter.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.stylesheet; import java.io.StringWriter; Modified: myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/StylesheetRendererTest.java URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/StylesheetRendererTest.java?rev=368646&r1=368645&r2=368646&view=diff ============================================================================== --- myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/StylesheetRendererTest.java (original) +++ myfaces/tomahawk/trunk/tomahawk/src/test/java/org/apache/myfaces/custom/stylesheet/StylesheetRendererTest.java Fri Jan 13 01:08:20 2006 @@ -1,3 +1,19 @@ +/* + * Copyright 2004-2006 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.myfaces.custom.stylesheet; import java.io.IOException;