- a82863f - Updated Object.toString() to convert hashCode to hex as per JRE. by scottb@google.com · 17 years ago
- 15c36a5 Added the DecoratorPanel, which is a Widget that wraps another Widget in a 9-box that can be used to create rounded corners. by gwt.team.jlabanca · 17 years ago
- 554db6c A recent change to DOM.isOrHasChild(parent,child) results in a NS_ERROR_INVALID_POINTER exception if the child is null. MouseListenerCollection.fireMouseEvent can pass null as the child on an onMouseOut event if the cursor moves from the widget to the browser window (outside the client body but inside the web browser). The same applied to CustomButtom. While the previous implementation of isOrHasChild allowed child to be null, we consider it an invalid value. by gwt.team.jlabanca · 17 years ago
- 32ee0a4 TextBox now takes in an element contructtor. by gwt.team.ecc · 17 years ago
- d025f81 Fixes Issue 1942 by gwt.team.knorton · 17 years ago
- 1247747 This patch makes PasswordTextBox inherit from TextBox and adds some unit tests around this change. by gwt.team.ecc · 17 years ago
- 7c50e85 Fix the test breakage by splitting the overrides intended to be part of the GWT-supplied by gwt.team.jat · 17 years ago
- 31a0d4e Add a static method to LocaleInfo to get the native display name for a by gwt.team.jat · 17 years ago
- 9ae1fb4 Simplifies BrowserManagerServer based on the premise that the cleanup thread is the only guy who *ever* does any cleanup. by scottb@google.com · 17 years ago
- 93ac8ae Reduce the level of recursion in MethodCallTest to prevent a stack overflow on Safari. by gwt.team.bobv · 17 years ago
- 4a91aba These examples were originally written for the Developer Guide. This patch by gwt.team.zundel · 17 years ago
- 8cc661b Merge the Linker change branch. by gwt.team.bobv · 17 years ago
- 5b509a5 Support BrowserManagerServer running FireFox where we have a restriction of running only one instance of the browser at a time. by scottb@google.com · 17 years ago
- 87bfae8 Beautiful new tree icons. by gwt.team.jlabanca · 17 years ago
- 180ed25 Under logLevel INFO, the Benchmarks deprecation warning branch was visible in the logger. It turns out two deprecation branches were actually getting creating. This change unifies the deprecation branch and moves all logging under the context of the Generator. by scottb@google.com · 17 years ago
- db54b8f Fixes Issue #1741 by gwt.team.knorton · 17 years ago
- aadf205 Fixes Issue #1218 by gwt.team.knorton · 17 years ago
- a8c31c3 Removed stray unmatched <br> tag for well-formed HTML. Formatted. by scottb@google.com · 17 years ago
- 731ccc8 Fixed build break in HashMapBenchmark where the generated code tried to pass a parameter the declared code did not accept. by scottb@google.com · 17 years ago
- d2f83c2 Fixes broken test RequestBuilderTestServlet, which broken when the internal name of the running module changed per the JUnit refactor. by scottb@google.com · 17 years ago
- fc37118 Changes the internals of how JUnit works. Previously, each individual test class would run in its own compilation and do a fresh page load. Methods within that class would run within a single compilation and page load. Now, an entire GWT module is compiled, which is capable of running any GWTTestCase class in that entire module. This means any Suite containing classes all from the same GWT module can run entirely in a single compilation. This ends up being much more efficient-- CompilerSuite can run in around 40 seconds in web mode or hosted mode; it would have taken several minutes before. by scottb@google.com · 17 years ago
- 9cbb0d3 Fixed the javadoc that listed the debug ID module as "com.google.gwt.user.DebugID" to say "com.google.gwt.user.Debug". The module was renamed before the debug ID patch was submitted, but the javadoc wasn't updated. by gwt.team.jlabanca · 17 years ago
- d3d27e7 Added missing test. by scottb@google.com · 17 years ago
- fd7f862 With the latest documentRoot patch, Window.getClientHeight returns the wrong value in Safari 2. This patch figures our the current version of Safari and returns the correct value for the clientHeight. by gwt.team.jlabanca · 17 years ago
- 74e5472 The log level for the raw type message committed at r1797 should have been at level DEBUG and not INFO. by gwt.team.mmendez · 17 years ago
- a391b91 Fixed previous patch for empty switch statements by removing unused import, by gwt.team.jat · 17 years ago
- 7620c15 Added support for using LocaleInfo even if the I18N module isn't included. by gwt.team.jat · 17 years ago
- 917819f Adds a new class called DocumentRootImpl that sets the document root based on the render mode of the browser, strict or quirks. The replaces all of the JSNI methods that used a conditional to pick doc.body or doc.documentRoot. This patch also adds WindowImpl classes, separating the Window specific JSNI methods out of the DOMImpl classes. by gwt.team.jlabanca · 17 years ago
- 766c10e Change the log level for the message regarding use of raw types from WARN to INFO. Effectively this suppresses this warning for any raw type that is not assignable to Collection or Map since these will not cause all subtypes of Object to included in the proxy's code. by gwt.team.mmendez · 17 years ago
- 80f384c by gwt.team.tobyr · 17 years ago
- 67b1266 Fixed javadoc associated with the onEnsureDebugId patch by moving @see tags below the main comments. I also escaped '>' and '<' characters in UIObject javadoc. by gwt.team.jlabanca · 17 years ago
- 3cf7461 Remove I18N import from RichText module. by gwt.team.jat · 17 years ago
- 877cc63 Added a new TitledPanel Widget that uses the HTML fieldset element to create a nicely bordered container around a Widget. by gwt.team.jlabanca · 17 years ago
- 5577b43 This patch adds a new method "UIObject.ensureDebugID(String)", which will add an ID to a Widget and its important sub elements. Widgets which have important sub elements, such as the tabs in TabBar, override the onEnsureDebugId method to set the IDs. by gwt.team.jlabanca · 17 years ago
- 33e1dfd Description: by gwt.team.ecc · 17 years ago
- 79fb817 Description: by gwt.team.ecc · 17 years ago
- 58540d0 Fixed issue 908 by gwt.team.ecc · 17 years ago
- 9084fda Fixes a failing test, DialogBoxTest. This simply removes case by gwt.team.knorton · 17 years ago
- 1282be3 Remove checkstyle warnings; format by scottb@google.com · 17 years ago
- 8bf83b1 Fixes Issue #1535 by gwt.team.knorton · 17 years ago
- bfcccbf Removed a rogue catchExceptions override from HostedTest. by scottb@google.com · 17 years ago
- a926b58 Currently, scrolling to the far right or bottom of the ScrollPanel requires the user to access the scrollHeight property of the DOM element directly as followings: by gwt.team.ecc · 17 years ago
- 7fe58fe Fixes checkstyle warning; sort & format; set Java file props by scottb@google.com · 17 years ago
- d5e21a5 Tightened checkstyle rules; fixed existing violations. by scottb@google.com · 17 years ago
- 326928a Use implicit ports. by scottb@google.com · 17 years ago
- c7b3259 by gwt.team.tobyr · 17 years ago
- 258408d by gwt.team.tobyr · 17 years ago
- 0b2eb9b by gwt.team.tobyr · 17 years ago
- e7c7403 by gwt.team.tobyr · 17 years ago
- 1232ff3 Fixes Issue 759 by gwt.team.knorton · 17 years ago
- 4f083c2 Allows annotation types to be used as normal interfaces in web mode. by scottb@google.com · 17 years ago
- bb0406f Issue: 1390 by gwt.team.ecc · 17 years ago
- 0ae4606 Description: by gwt.team.ecc · 17 years ago
- 2018a76 Implement String.contains and associated test. Also fix typo in StringTest. by gwt.team.jat · 17 years ago
- 22de1df Add a LocaleInfo object which priovides access to various information about by gwt.team.jat · 17 years ago
- 6be985d Fixes a bug in Collections.fill(), which never could have worked. Adds a test for it. by gwt.team.scottb · 17 years ago
- 0348974 Updated EmulSet to throw an explicit NPE instead of an implicit JavaScriptException. This fixes some failing unit tets. by gwt.team.scottb · 17 years ago
- a91c285 Updated EmulSuite to cover the actual set of JRE tests. by gwt.team.scottb · 17 years ago
- 51b3328 General polish on ArgHandlerLogLevel to use strong types; also computing valid options from the enum instead of hard coding. by gwt.team.scottb · 17 years ago
- 391d886 Sort & format JUnitTestCaseStubGenerator.java by gwt.team.scottb · 17 years ago
- 76b8204 Removed stray @gwt.typeArgs; sort & format. by gwt.team.scottb · 17 years ago
- f8b2e11 by gwt.team.tobyr · 17 years ago
- 9ee198e Fixes issue 1941. Updates the SerializationPolicyLoader such that it ignores any classes that can't be found during the loading process. I decided to add a new method, SerializationPolicyLoader.loadFromStream(InputStream, List<ClassNotFoundException>), since removing ClassNotFoundException from the throws clause of the existing loadFromStream(InputStream) method would break existing users. (I don't suspect that there are very many at all so maybe this decision was overly conservative.) by gwt.team.mmendez · 17 years ago
- 89c0673 ssue: 211 by gwt.team.ecc · 17 years ago
- 1f4891d Adds GWT.getVersion() which returns (in hosted mode) the version of GWT that is running or (in web mode) the version of GWT the app was compiled with. by gwt.team.scottb · 17 years ago
- c32674a Manually sorted GWT.java-hosted by gwt.team.scottb · 17 years ago
- 33948e8 Allow RPC to support DTOs with non-public no-arg constructors. by gwt.team.bobv · 17 years ago
- 31b31da Forgot that enumerated types that are subclassed will be abstract, yet they require an instantiate method on their generated field serializer. Ran the full RPC suite against the change this time. by gwt.team.mmendez · 17 years ago
- ce248c8 Extend JSNI syntax to allow invocation of Java constructors via ::new. by gwt.team.bobv · 17 years ago
- 8d2e7b3 Forgot to update the copyright date as part of r1699. by gwt.team.mmendez · 17 years ago
- 20d0637 Fixes "Unresolvable native reference to method 'instantiate' in type {TypeName}_FieldSerializer" errors introduced in the GWT 1.5 code base. by gwt.team.mmendez · 17 years ago
- 81b753c Fix issue #1586. The i18nCreator did not have a way to create a ConstantsWithLookup derived interface.The code to generate an interface that extends ConstantsWithLookup is already there, the tool was just missing arguments to invoke it. This patch adds a -createConstantsWithLookup argument to be passed to I18NCreator and the I18NSync main classes. by gwt.team.rdayal · 17 years ago
- 47e16ae Implements the Java assert statement in web mode via a compiler flag, "-ea". This is mimic the JVM option to enable assertions. When the option is not specified, the compiler will continue to optimize out all assert statements as it does currently. by gwt.team.scottb · 17 years ago
- 3c63c33 Fixes several compiler problems related to varargs. by gwt.team.scottb · 17 years ago
- 31b832b Removing unnecessary blank lines from StackPanel. by gwt.team.ecc · 17 years ago
- 3f58c29 by gwt.team.ecc · 17 years ago
- 29802ce Updated assertion. by gwt.team.mmendez · 17 years ago
- 691ca8d Asserted that the erased version of a generic type equals the raw version of a generic type based on a post mortem code review of r1676. by gwt.team.mmendez · 17 years ago
- 84c6898 Code size optimization for Throwable's most common use cases. by gwt.team.scottb · 17 years ago
- 090948b Implemented Class.getEnumConstants() in the compiler and JRE. by gwt.team.scottb · 17 years ago
- e75e4d1 Hopefully last tweak to MenuBar... by gwt.team.ecc · 17 years ago
- f203331 Fixing previous commit by making the dependent styles lower case. by gwt.team.ecc · 17 years ago
- abce009 Fixes an unreleased bug where RPC could generate a proxy that contained duplicate create* methods; one for a generic type and a separate one for its corresponding raw type. by gwt.team.mmendez · 17 years ago
- 7c2b155 Fixes issue 1928 by gwt.team.ecc · 17 years ago
- ea8e83f Reformatting using eclipse gwt plugin. by gwt.team.ecc · 17 years ago
- a46d346 Added wrapper styles to support rounded tabs Patch by: jlabanca Review by: ecc by gwt.team.ecc · 17 years ago
- 4dc2053 Increasing timeout from 5 seconds to 10 seconds due to test failures. by gwt.team.scottb · 17 years ago
- 3945a6c Removed the RPC warning regarding exclusion of final fields from serialization. Also updated RemoteService.gwt.xml to document that the gwt.suppressNonStaticFinalFieldWarnings property is deprecated and ignored. by gwt.team.mmendez · 17 years ago
- a179516 Sort & format. by gwt.team.scottb · 17 years ago
- 82fbe42 Fixes Integer and IntegerTest to unbreak the build. by gwt.team.scottb · 17 years ago
- 06640f5 Adding disabled styling for CheckBox as part of creating a default GWT css. by gwt.team.ecc · 17 years ago
- 0c72484 Improves JUnit's local web test performance by setting the user-agent property to exactly the single value required by the running hosted browser. This means one single permutation is created, instead of the current total, based on the number of user-agents defined in UserAgent.gwt.xml. by gwt.team.scottb · 17 years ago
- 8489c0b Fixed my bad formatting mojo. :( by gwt.team.scottb · 17 years ago
- aba2d27 1) Adds a test to MiscellaneousTest to ensure that virtual dispatch to String works correctly. by gwt.team.scottb · 17 years ago
- 7d85cbb Fix for issue 1867, where replacing radio button name disabled events. by gwt.team.ecc · 17 years ago
- 6270b59 Removed bogus references to LongTest. by gwt.team.scottb · 17 years ago
- 31cd838 Implements missing 1.5 features from the Java number classes. IntegerTest is currently broken. by gwt.team.scottb · 17 years ago
- 8d5f111 Adds the ant-style filtering to the source and super-source elements of the module XML file. by gwt.team.scottb · 17 years ago
- 57e8f58 Tweaks to r1590, mostly formatting. by gwt.team.scottb · 17 years ago
- 8b5262d Forgot to commit this change as part of r1593 (enables the testing of enums over RPC). by gwt.team.mmendez · 17 years ago