change the package name of the GWT Apps to org.grammaticalframework.ui.gwt

This commit is contained in:
krasimir
2010-07-08 09:55:09 +00:00
parent faf816dbac
commit be06bc8a09
35 changed files with 29 additions and 29 deletions

View File

@@ -4,7 +4,7 @@
<inherits name="com.google.gwt.user.User" />
<inherits name="com.google.gwt.xml.XML" />
<inherits name="se.chalmers.cs.gf.gwt.PGF" />
<inherits name="org.grammaticalframework.ui.gwt.PGF" />
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->

View File

@@ -4,7 +4,7 @@
<inherits name="com.google.gwt.user.User" />
<inherits name="com.google.gwt.xml.XML" />
<inherits name="se.chalmers.cs.gf.gwt.PGF" />
<inherits name="org.grammaticalframework.ui.gwt.PGF" />
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
@@ -17,7 +17,7 @@
<!-- Specify the app entry point class. -->
<entry-point class="se.chalmers.cs.gf.gwt.client.FridgeApp" />
<entry-point class="org.grammaticalframework.ui.gwt.client.FridgeApp" />
<!-- Specify the application specific style sheet. -->
<stylesheet src="Fridge.css" />

View File

@@ -4,7 +4,7 @@
<inherits name="com.google.gwt.user.User" />
<inherits name="com.google.gwt.xml.XML" />
<inherits name="se.chalmers.cs.gf.gwt.PGF" />
<inherits name="org.grammaticalframework.ui.gwt.PGF" />
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
@@ -17,7 +17,7 @@
<!-- Specify the app entry point class. -->
<entry-point class="se.chalmers.cs.gf.gwt.client.TranslateApp" />
<entry-point class="org.grammaticalframework.ui.gwt.client.TranslateApp" />
<!-- Specify the application specific style sheet. -->
<stylesheet src="Translate.css" />

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.*;
import com.google.gwt.user.client.ui.*;
@@ -30,7 +30,7 @@ public class BrowsePanel extends Composite {
public native void onActivate() /*-{
$doc.browsePanel = this;
$doc.callBrowse = @se.chalmers.cs.gf.gwt.client.BrowsePanel::callBrowse(Lse/chalmers/cs/gf/gwt/client/BrowsePanel;Ljava/lang/String;);
$doc.callBrowse = @org.grammaticalframework.ui.gwt.client.BrowsePanel::callBrowse(Lorg/grammaticalframework/ui/gwt/client/BrowsePanel;Ljava/lang/String;);
}-*/;
protected Widget createSearchPanel(CompletionOracle oracle) {

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.ArrayList;
import java.util.Collections;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.core.client.*;
import com.google.gwt.user.client.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.LinkedHashSet;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.user.client.ui.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.Iterator;
import java.util.NoSuchElementException;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.core.client.JavaScriptObject;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.http.client.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.http.client.Request;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.user.client.ui.HTML;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.user.client.ui.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.Collection;

View File

@@ -1,6 +1,6 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import se.chalmers.cs.gf.gwt.client.JSONRequestBuilder.Arg;
import org.grammaticalframework.ui.gwt.client.JSONRequestBuilder.Arg;
import java.util.*;
import com.google.gwt.core.client.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.ArrayList;
import java.util.Collection;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.user.client.ui.*;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.ui.Label;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.AbstractList;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.LinkedList;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package se.chalmers.cs.gf.gwt.client;
package org.grammaticalframework.ui.gwt.client;
import java.util.List;

View File

Before

Width:  |  Height:  |  Size: 138 B

After

Width:  |  Height:  |  Size: 138 B

View File

Before

Width:  |  Height:  |  Size: 149 B

After

Width:  |  Height:  |  Size: 149 B