Author: nbelaevski
Date: 2008-10-28 01:38:57 -0400 (Tue, 28 Oct 2008)
New Revision: 10935
Modified:
trunk/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java
trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
trunk/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java
trunk/sandbox/impl/src/main/java/org/richfaces/component/util/SandboxMessageUtil.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java
trunk/sandbox/ui/editor/src/main/java/org/richfaces/antlr/HtmlSeamSample.java
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/SeamTextConverter.java
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java
trunk/sandbox/ui/editor/src/main/java/org/richfaces/renderkit/resources/EditorHTMLRenderer.java
trunk/sandbox/ui/editor/src/test/java/org/richfaces/component/EditorComponentTest.java
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/component/html/HtmlEditorTest.java
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/taglib/EditorTagTest.java
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java
trunk/sandbox/ui/queue/src/main/java/org/ajax4jsf/taglib/html/jsp/QueueTag.java
trunk/sandbox/ui/rex-button/src/main/java/org/richfaces/sandbox/component/UIButton.java
trunk/sandbox/ui/rex-messageBox/src/main/java/org/richfaces/sandbox/component/UIMessageBox.java
trunk/sandbox/ui/rex-resizable/src/main/java/org/richfaces/renderkit/ResizableRendererBase.java
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/Mode.java
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/UISortableControl.java
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/renderkit/html/SortControlRenderer.java
Log:
https://jira.jboss.org/jira/browse/RF-4578
Modified:
trunk/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java
===================================================================
---
trunk/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/docs/highlight/src/main/java/org/richfaces/highlight/CssXhtmlRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.highlight;
import java.awt.Color;
import java.io.ByteArrayOutputStream;
Modified:
trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java
===================================================================
---
trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/docs/highlight/src/main/java/org/richfaces/highlight/IStyleConstantsCSS.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.highlight;
import java.awt.Color;
Modified: trunk/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java
===================================================================
--- trunk/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java 2008-10-28
00:06:53 UTC (rev 10934)
+++ trunk/framework/impl/src/main/java/org/ajax4jsf/cache/CacheManager.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,19 @@
+/*
+ * Copyright [yyyy] [name of copyright owner].
+ *
+ * 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.ajax4jsf.cache;
import java.io.BufferedReader;
Modified:
trunk/sandbox/impl/src/main/java/org/richfaces/component/util/SandboxMessageUtil.java
===================================================================
---
trunk/sandbox/impl/src/main/java/org/richfaces/component/util/SandboxMessageUtil.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/impl/src/main/java/org/richfaces/component/util/SandboxMessageUtil.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.util;
import javax.faces.application.FacesMessage;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/ActionPrefixHolder.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public interface ActionPrefixHolder {
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogActionState.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseEvent.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponent;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListener.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.event.FacesListener;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogCloseListenerImpl.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.application.ViewHandler;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContext.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogContextManager.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import java.io.Serializable;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogEvent.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.ActionSource;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenEvent.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponent;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListener.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.event.FacesListener;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/DialogOpenListenerImpl.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.application.ViewHandler;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogAction.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.FacesException;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogButton.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogClose.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogCloseButton.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import org.ajax4jsf.component.UIAjaxCommandButton;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogLink.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogVerticalFiller.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIComponentBase;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindow.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 03.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowButton.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import org.ajax4jsf.component.UIAjaxCommandButton;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIDialogWindowOutputLink.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public abstract class UIDialogWindowOutputLink extends UIDialogWindow {
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/component/UIOutputLink.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
public class UIOutputLink {
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogBaseActionRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.component.UIComponent;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogButtonRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogCloseRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogLinkRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 04.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogMethodBinding.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.component.StateHolder;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogVerticalFillerRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import org.ajax4jsf.renderkit.AjaxComponentRendererBase;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowOutputLinkRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import javax.faces.application.ViewHandler;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
-/*
- * Created on 03.08.2006
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit;
Modified:
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java
===================================================================
---
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/dialog-window/src/main/java/org/richfaces/renderkit/DialogWindowUtils.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import java.util.Iterator;
Modified: trunk/sandbox/ui/editor/src/main/java/org/richfaces/antlr/HtmlSeamSample.java
===================================================================
---
trunk/sandbox/ui/editor/src/main/java/org/richfaces/antlr/HtmlSeamSample.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editor/src/main/java/org/richfaces/antlr/HtmlSeamSample.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.antlr;
import java.io.BufferedReader;
Modified:
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/SeamTextConverter.java
===================================================================
---
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/SeamTextConverter.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/SeamTextConverter.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
/*
* SeamTextConverter.java Date created: 26.09.2008
* Last modified by: $Author$
Modified: trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java
===================================================================
--- trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java 2008-10-28
00:06:53 UTC (rev 10934)
+++ trunk/sandbox/ui/editor/src/main/java/org/richfaces/component/UIEditor.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,24 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
/*
* UIEditor.java Date created: 16.09.2008
* Last modified by: $Author$
Modified:
trunk/sandbox/ui/editor/src/main/java/org/richfaces/renderkit/resources/EditorHTMLRenderer.java
===================================================================
---
trunk/sandbox/ui/editor/src/main/java/org/richfaces/renderkit/resources/EditorHTMLRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editor/src/main/java/org/richfaces/renderkit/resources/EditorHTMLRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.resources;
Modified:
trunk/sandbox/ui/editor/src/test/java/org/richfaces/component/EditorComponentTest.java
===================================================================
---
trunk/sandbox/ui/editor/src/test/java/org/richfaces/component/EditorComponentTest.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editor/src/test/java/org/richfaces/component/EditorComponentTest.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component;
import javax.faces.component.UIForm;
Modified:
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/component/html/HtmlEditorTest.java
===================================================================
---
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/component/html/HtmlEditorTest.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/component/html/HtmlEditorTest.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.html;
import javax.faces.context.FacesContext;
Modified:
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/taglib/EditorTagTest.java
===================================================================
---
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/taglib/EditorTagTest.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/editorOld/src/test/java/org/richfaces/taglib/EditorTagTest.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified:
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java
===================================================================
---
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/component/html/HtmlPanel2Test.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.component.html;
import javax.faces.context.FacesContext;
Modified: trunk/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java
===================================================================
---
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/panel2/src/test/java/org/richfaces/taglib/Panel2TagTest.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.taglib;
Modified: trunk/sandbox/ui/queue/src/main/java/org/ajax4jsf/taglib/html/jsp/QueueTag.java
===================================================================
---
trunk/sandbox/ui/queue/src/main/java/org/ajax4jsf/taglib/html/jsp/QueueTag.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/queue/src/main/java/org/ajax4jsf/taglib/html/jsp/QueueTag.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.ajax4jsf.taglib.html.jsp;
import javax.el.ValueExpression;
Modified:
trunk/sandbox/ui/rex-button/src/main/java/org/richfaces/sandbox/component/UIButton.java
===================================================================
---
trunk/sandbox/ui/rex-button/src/main/java/org/richfaces/sandbox/component/UIButton.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/rex-button/src/main/java/org/richfaces/sandbox/component/UIButton.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.sandbox.component;
Modified:
trunk/sandbox/ui/rex-messageBox/src/main/java/org/richfaces/sandbox/component/UIMessageBox.java
===================================================================
---
trunk/sandbox/ui/rex-messageBox/src/main/java/org/richfaces/sandbox/component/UIMessageBox.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/rex-messageBox/src/main/java/org/richfaces/sandbox/component/UIMessageBox.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
+ * License Agreement.
*
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.sandbox.component;
Modified:
trunk/sandbox/ui/rex-resizable/src/main/java/org/richfaces/renderkit/ResizableRendererBase.java
===================================================================
---
trunk/sandbox/ui/rex-resizable/src/main/java/org/richfaces/renderkit/ResizableRendererBase.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/rex-resizable/src/main/java/org/richfaces/renderkit/ResizableRendererBase.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,3 +1,23 @@
+/**
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
package org.richfaces.renderkit;
import org.ajax4jsf.renderkit.HeaderResourcesRendererBase;
Modified: trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/Mode.java
===================================================================
---
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/Mode.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/Mode.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/UISortableControl.java
===================================================================
---
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/UISortableControl.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/component/UISortableControl.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.component;
Modified:
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/renderkit/html/SortControlRenderer.java
===================================================================
---
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/renderkit/html/SortControlRenderer.java 2008-10-28
00:06:53 UTC (rev 10934)
+++
trunk/sandbox/ui/sortableHeader/src/main/java/org/richfaces/renderkit/html/SortControlRenderer.java 2008-10-28
05:38:57 UTC (rev 10935)
@@ -1,5 +1,22 @@
/**
- *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.richfaces.renderkit.html;