You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/01/13 10:08:11 UTC

svn commit: r368645 - in /myfaces/sandbox/trunk: sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/ sandbox/src/main/java/org/apache/myfaces/custom/ajax/ sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/ sandbox/src/m...

Author: baranda
Date: Fri Jan 13 01:07:44 2006
New Revision: 368645

URL: http://svn.apache.org/viewcvs?rev=368645&view=rev
Log:
Added license headers (MYFACES-1022). Thanks to Dennis Byrne

Modified:
    myfaces/sandbox/trunk/sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/DateTimeConverterBean.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/AjaxCallbacks.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/AjaxDecodePhaseListener.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/ConvertDateTimeTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/DateTimeConverter.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/BooleanConverter.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/ConvertBooleanTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjax.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxRenderer.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageRenderer.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjax.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxRenderer.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjax.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjaxTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjax.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxRenderer.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/SampleValueChangeListener.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/UrlValidator.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/ValidateUrlTag.java
    myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/util/ComponentUtils.java

Modified: myfaces/sandbox/trunk/sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/DateTimeConverterBean.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/DateTimeConverterBean.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/DateTimeConverterBean.java (original)
+++ myfaces/sandbox/trunk/sandbox-examples/src/main/java/org/apache/myfaces/examples/dateTimeConverter/DateTimeConverterBean.java Fri Jan 13 01:07:44 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.dateTimeConverter;
 
 import java.util.Date;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/AjaxCallbacks.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/AjaxCallbacks.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/AjaxCallbacks.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/AjaxCallbacks.java Fri Jan 13 01:07:44 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.ajax;
 
 /**

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/AjaxDecodePhaseListener.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/AjaxDecodePhaseListener.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/AjaxDecodePhaseListener.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/api/AjaxDecodePhaseListener.java Fri Jan 13 01:07:44 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.ajax.api;
 
 import org.apache.commons.logging.Log;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/ajax/util/AjaxRendererUtils.java Fri Jan 13 01:07:44 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.ajax.util;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/ConvertDateTimeTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/ConvertDateTimeTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/ConvertDateTimeTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/ConvertDateTimeTag.java Fri Jan 13 01:07:44 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.convertDateTime;
 
 import javax.servlet.jsp.PageContext;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/DateTimeConverter.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/DateTimeConverter.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/DateTimeConverter.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertDateTime/DateTimeConverter.java Fri Jan 13 01:07:44 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.convertDateTime;
 
 import javax.faces.context.FacesContext;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/BooleanConverter.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/BooleanConverter.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/BooleanConverter.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/BooleanConverter.java Fri Jan 13 01:07:44 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.convertboolean;
 
 import javax.faces.component.UIComponent;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/ConvertBooleanTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/ConvertBooleanTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/ConvertBooleanTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/convertboolean/ConvertBooleanTag.java Fri Jan 13 01:07:44 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.convertboolean;
 
 import javax.faces.context.FacesContext;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjax.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjax.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjax.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjax.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxRenderer.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxRenderer.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxRenderer.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxRenderer.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.myfaces.renderkit.html.HtmlTextRendererBase;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlInputTextAjaxTag.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.myfaces.taglib.html.ext.HtmlInputTextTag;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageRenderer.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageRenderer.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageRenderer.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageRenderer.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import javax.faces.context.FacesContext;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlMessageTag.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.commons.logging.Log;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjax.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjax.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjax.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjax.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxRenderer.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxRenderer.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxRenderer.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxRenderer.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectBooleanCheckboxAjaxTag.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.myfaces.taglib.html.ext.HtmlSelectBooleanCheckboxTag;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjax.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjax.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjax.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjax.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjaxTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjaxTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjaxTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectManyCheckboxAjaxTag.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import javax.faces.component.UIComponent;
@@ -6,10 +21,9 @@
 import org.apache.myfaces.taglib.html.ext.HtmlSelectManyCheckboxTag;
 
 /**
- * User: treeder
- * Date: Oct 20, 2005
- * Time: 3:05:46 PM
- */
+* @author Travis Reeder (latest modification by $Author: svieujot $)
+* @version $Revision: 169739 $ $Date: 2005-05-12 02:45:14 +0200 (Thu, 12 May 2005) $
+*/
 public class HtmlSelectManyCheckboxAjaxTag extends HtmlSelectManyCheckboxTag implements AjaxCallbacks
 {
     private String onSuccess;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjax.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjax.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjax.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjax.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import java.io.IOException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxRenderer.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxRenderer.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxRenderer.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxRenderer.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.myfaces.renderkit.html.ext.HtmlRadioRenderer;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/HtmlSelectOneRadioAjaxTag.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import org.apache.myfaces.custom.ajax.AjaxCallbacks;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/SampleValueChangeListener.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/SampleValueChangeListener.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/SampleValueChangeListener.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/inputAjax/SampleValueChangeListener.java Fri Jan 13 01:07:44 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.inputAjax;
 
 import javax.faces.event.AbortProcessingException;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/UrlValidator.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/UrlValidator.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/UrlValidator.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/UrlValidator.java Fri Jan 13 01:07:44 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.urlvalidator;
 
 import org.apache.myfaces.util.MessageUtils;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/ValidateUrlTag.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/ValidateUrlTag.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/ValidateUrlTag.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/urlvalidator/ValidateUrlTag.java Fri Jan 13 01:07:44 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.urlvalidator;
 
 import javax.faces.validator.Validator;

Modified: myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/util/ComponentUtils.java
URL: http://svn.apache.org/viewcvs/myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/util/ComponentUtils.java?rev=368645&r1=368644&r2=368645&view=diff
==============================================================================
--- myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/util/ComponentUtils.java (original)
+++ myfaces/sandbox/trunk/sandbox/src/main/java/org/apache/myfaces/custom/util/ComponentUtils.java Fri Jan 13 01:07:44 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.util;
 
 import org.apache.commons.logging.Log;