Skip to content

Commit

Permalink
updated license header
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjiv.jivan committed May 12, 2008
1 parent 67f2311 commit afd2726
Show file tree
Hide file tree
Showing 578 changed files with 11,742 additions and 2,137 deletions.
8 changes: 0 additions & 8 deletions main/src/com/gwtext/Charts.gwt.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
<!--
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
*
-->

<module>
<inherits name='com.gwtext.GwtExt'/>
Expand Down
8 changes: 0 additions & 8 deletions main/src/com/gwtext/GwtExt.gwt.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
<!--
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
*
-->

<module>
<inherits name='com.google.gwt.user.User'/>
Expand Down
24 changes: 20 additions & 4 deletions main/src/com/gwtext/client/animation/Easing.java
Original file line number Diff line number Diff line change
@@ -1,15 +1,31 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.animation;

/**
* Easing animation constants.
*
* @author Sanjiv Jivan
* @see com.gwtext.client.core.AnimationConfig
*/
public class Easing {
Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/Ajax.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.google.gwt.core.client.JavaScriptObject;
Expand All @@ -16,6 +31,8 @@

/**
* Global Ajax request class. This class is a singleton and cannot be created directly.
*
* @author Sanjiv Jivan
*/
public class Ajax extends Connection {

Expand Down
24 changes: 20 additions & 4 deletions main/src/com/gwtext/client/core/AnimationConfig.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.gwtext.client.animation.Easing;
Expand All @@ -13,6 +28,7 @@
/**
* Configuration class for amination settings.
*
* @author Sanjiv Jivan
* @see com.gwtext.client.core.BaseElement
*/
public class AnimationConfig extends BaseConfig {
Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/BaseConfig.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/


package com.gwtext.client.core;

import com.gwtext.client.util.JavaScriptObjectHelper;

/**
* Base abstract configutation class.
*
* @author Sanjiv Jivan
*/
public abstract class BaseConfig extends JsObject {

Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/BaseElement.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.google.gwt.core.client.JavaScriptObject;
Expand All @@ -18,6 +33,8 @@

/**
* Represents a base Element in the DOM.
*
* @author Sanjiv Jivan
*/
public class BaseElement extends JsObject implements Fx {

Expand Down
24 changes: 20 additions & 4 deletions main/src/com/gwtext/client/core/Box.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.google.gwt.core.client.JavaScriptObject;
Expand All @@ -13,6 +28,7 @@
/**
* This class represents an Element's Box.
*
* @author Sanjiv Jivan
* @see com.gwtext.client.core.BaseElement#setBox(Box)
* @see com.gwtext.client.core.BaseElement#setBox(Box, boolean, boolean)
* @see com.gwtext.client.core.BaseElement#setBox(Box, boolean, AnimationConfig)
Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/CompositeElement.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.google.gwt.core.client.JavaScriptObject;

/**
* Standard composite class that creates an ExtElement for every element in the collection.
*
* @author Sanjiv Jivan
*/
public class CompositeElement extends BaseElement {

Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/CompositeElementLite.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package com.gwtext.client.core;

import com.google.gwt.core.client.JavaScriptObject;

/**
* Flyweight composite class. Reuses the same Ext.Element for element operations.
*
* @author Sanjiv Jivan
*/
public class CompositeElementLite extends CompositeElement {

Expand Down
25 changes: 21 additions & 4 deletions main/src/com/gwtext/client/core/Connection.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/*
* GWT-Ext Widget Library
* Copyright(c) 2007-2008, GWT-Ext.
* [email protected]
*
* http://www.gwt-ext.com/license
* Copyright 2007 - 2008, GWT-Ext LLC., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/


package com.gwtext.client.core;

Expand All @@ -16,6 +31,8 @@
* Requests made by this class are asynchronous, and will return immediately. No data from the server will be available to the statement immediately following the request call. To process returned data, use a callback in the request options object, or an event listener.
* Note: If you are doing a file upload, you will not get a normal response object sent back to your callback or event handler. Since the upload is handled via in IFRAME, there is no XMLHttpRequest. The response object is created using the innerHTML of the IFRAME's document as the responseText property and, if present, the IFRAME's XML document as the responseXML property.
* This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested that it be placed either inside a &lt;textarea&gt; in an HTML document and retrieved from the responseText using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using standard DOM methods.
*
* @author Sanjiv Jivan
*/
public class Connection extends JsObject {

Expand Down
Loading

0 comments on commit afd2726

Please sign in to comment.