Revision: 8889
Author: [email protected]
Date: Tue Sep 28 13:43:03 2010
Log: Removing isChanged() because requestProxyGenerator doesn't handle "is".

Review at http://gwt-code-reviews.appspot.com/907802

Review by: [email protected]
http://code.google.com/p/google-web-toolkit/source/detail?r=8889

Modified:
/trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ExpenseProxy.java /trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ReportProxy.java

=======================================
--- /trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ExpenseProxy.java Tue Sep 21 12:24:16 2010 +++ /trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ExpenseProxy.java Tue Sep 28 13:43:03 2010
@@ -1,12 +1,12 @@
 /*
  * Copyright 2010 Google Inc.
- *
+ *
* 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
@@ -40,13 +40,11 @@
   String getDescription();

   Long getId();
-
+
   String getReasonDenied();

   ReportProxy getReport();

-  boolean isChanged();
-
   void setAmount(Double amount);

   void setApproval(String approval);
=======================================
--- /trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ReportProxy.java Tue Sep 21 12:24:16 2010 +++ /trunk/samples/expenses/src/main/java/com/google/gwt/sample/expenses/client/request/ReportProxy.java Tue Sep 28 13:43:03 2010
@@ -1,12 +1,12 @@
 /*
  * Copyright 2010 Google Inc.
- *
+ *
* 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
@@ -36,15 +36,13 @@
   String getDepartment();

   Long getId();
-
+
   String getNotes();

   String getPurpose();
-
+
   EmployeeProxy getReporter();

-  boolean isChanged();
-
   void setApprovedSupervisor(EmployeeProxy approvedSupervisor);

   void setCreated(Date created);
@@ -56,6 +54,6 @@
   void setPurpose(String purpose);

   void setReporter(EmployeeProxy reporter);
-
+
   EntityProxyId<ReportProxy> stableId();
 }

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to