pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/gwt Update to 2.7.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8c96873e13ce
branches:  trunk
changeset: 349373:8c96873e13ce
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Tue Jul 05 19:27:02 2016 +0000

description:
Update to 2.7.0

Changelog:
Release Notes for 2.7.0

This release fixes issues found while testing RC1.

For details, see the commit logs.
Known Issues

DevMode always starts in Super Dev Mode, so it?s not as easy to test in production mode. See issue 9004 for workarounds.

Release Notes for 2.7.0 (RC1)
Highlights

    Super Dev Mode is now the default. DevMode automatically starts Super Dev Mode and reloading a web page automatically runs the compiler when necessary. (The -nosuperDevMode flag may be used to 
revert to the old behavior.)

    Compiling in Super Dev Mode is much faster after the first compile.

    Experimental support for GSS, also known as Closure Stylesheets. (See below.)

Known Issues

    gwttar files are incorrect. (Fixed in the next version.)

Deprecations

    GWT Designer doesn?t work with 2.7 and is no longer supported. (Source code is available if someone wishes to revive this project.)

    IFrameLinker and XSLinker are deprecated because they don?t work in Super Dev Mode. However, we don?t have suitable replacements for all use cases yet. For updates and possible workarounds, see 
issue 8997.

Compiler changes

    In draft mode and Super Dev Mode, all compiler optimizations are turned off for better debugging. For example, null pointers are detected sooner.

    JSNI references no longer require fully qualified class names when this wouldn?t be necessary in Java. (For example, imports work.)

    We?ve started implementing JS Interop annotations, which will make it much easier to use GWT with JavaScript libraries. The specification is not final and there are bugs, so production GWT apps 
and libraries should continue to use JSNI for now. If you wish to experiment, you can enable JS Interop using the -XjsInteropMode flag, which is available for the compiler and Super Dev Mode. (It 
doesn?t work with old DevMode.)

    The experimental -XmethodNameDisplayMode flag adds a displayName property to each JavaScript function containing the name of the Java method. This makes Java method names available in browser 
debuggers at the expense of code size. (Also available in Super Dev Mode.)

    Boxed JavaScript strings (created in JavaScript using new String(...)) are no longer considered equivalent to Java strings. They should be unboxed before being passed to Java.

    Many bugfixes.

Library Changes
JDK emulation

    Significant performance improvements in String, ArrayList, HashMap, and Exception.

    New emulated classes: Locale, NavigableSet, and NavigableMap.

    New emulated methods in Class, String, Exception, RuntimeException, Logger, Arrays, Collections, and Map.Entry.

    LinkedList extends Deque and handles incorrect usage better.

Logging and Stack Traces

    Better wrapping of exceptions thrown from JavaScript.

    GWT apps that inherit the com.google.gwt.logging.Logging module have different default behavior for messages logged using the java.util.logging package. The new default is to log messages at 
level SEVERE and above to the browser?s console. PopupLogHandler and SystemHandler are no longer enabled by default.

    FirebugLogHandler and NullLoggingPopup have been removed. ()

Experimental GSS support

The CssResource.enableGss configuration property turns on GSS support.

    When enabled, resource files with a ?gss? extension are parsed as a Closure Stylesheet.

    When enabled, GSS can be used in a UiBinder file by setting gss="true" on a ui:style tag.

    If the CssResource.legacy configuration property is set, .css resources and ui:style tags without gss=true will first be converted to GSS and then parsed as GSS.

UiBinder

    The ui:data tag has new attributes: mimeType and doNotEmbed.

GWT-RPC

    The rpc.XserializeFinalFields configuration property turns on experimental support for serializing final fields.

    LinkedHashSet may be serialized without a serialization policy.

    deRPC is removed.

RequestFactory

    Support overridden methods and generics better.

    Fix support for @SkipInterfaceValidation on RequestContext methods.

Internationalization

    Upgraded to CLDR 25.

Browser API changes

    Updated support for typed arrays.

    Added History.replaceItem().

    Fixed an issue with Window.addWindowScrollHandler on Chrome.

Widgets

    The deprecated com.google.gwt.widgets package is removed.

    Various bugfixes and minor improvements.

Developer Tool Changes
Dev Mode

    The -nosuperDevMode flag may be used to turn off Super Dev Mode and revert to old Dev Mode. (However, most current browsers no longer support Dev Mode plugins.)

    The -modulePathPrefix flag may be used to move DevMode?s output to a subdirectory of the war directory.

Super Dev Mode

    Compiling is much faster after the first compile. (Compiling is skipped altogether if no files have changed.)

    The first compile no longer happens at startup.

    Chrome reloads the page faster while debugging. (Sourcemap file size is reduced.)

    The -launcherDir flag may be used to avoid running the GWT compiler before starting Super Dev Mode. When enabled, Super Dev Mode writes stub .nocache.js files that automatically recompile the GWT 
app before loading it. Therefore the bookmarklets aren?t needed. (This feature is automatically enabled when launched via DevMode.)

    The -logLevel flag may be used to adjust how compile errors are reported.

    The Dev Mode On bookmarklet dialog shows whether Super Dev Mode is turned on for each module on the page.

    Messages logged using java.util.logging at level SEVERE and above are written to the browser console by default.

    Fixed a startup faesting

    Better error reporting for compile errors while running tests.

    Messages logged using java.util.logging at level SEVERE and above are written to the browser console and test output by default.

    -Dgwt.htmlunit.debug may be used to open a JavaScript debugger window when running a test using HtmlUnit.

    Removed RunStyleRemoteWeb and the BrowserManager tool.

    Removed flags: -standardsMode, -nostandardsMode, -quirksMode. (GWTTestCase tests are always run in an HTML page in standards mode.)

For even more detail, see the Issue Tracker.

diffstat:

 www/gwt/Makefile |    12 +-
 www/gwt/PLIST    |  5163 +++++++++++++++++++++++++++++------------------------
 www/gwt/distinfo |    10 +-
 3 files changed, 2819 insertions(+), 2366 deletions(-)

diffs (truncated from 7079 to 300 lines):

diff -r aa1153046385 -r 8c96873e13ce www/gwt/Makefile
--- a/www/gwt/Makefile  Tue Jul 05 19:00:23 2016 +0000
+++ b/www/gwt/Makefile  Tue Jul 05 19:27:02 2016 +0000
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.2 2012/10/28 06:30:16 asau Exp $
+# $NetBSD: Makefile,v 1.3 2016/07/05 19:27:02 ryoon Exp $
 #
 
-DISTNAME=      gwt-2.4.0
+DISTNAME=      gwt-2.7.0
 CATEGORIES=    www
-MASTER_SITES=  http://google-web-toolkit.googlecode.com/files/
+MASTER_SITES=  http://storage.googleapis.com/gwt-releases/
 EXTRACT_SUFX=  .zip
 
 MAINTAINER=    ryoon%NetBSD.org@localhost
-HOMEPAGE=      https://developers.google.com/web-toolkit/
+HOMEPAGE=      http://www.gwtproject.org/
 COMMENT=       Google Web Toolkit
 LICENSE=       apache-2.0
 
@@ -26,7 +26,6 @@
 SUBST_CLASSES+=                gwt
 SUBST_STAGE.gwt=       pre-configure
 SUBST_MESSAGE.gwt=     Fix for GWT
-SUBST_FILES.gwt=       benchmarkViewer
 SUBST_FILES.gwt+=      i18nCreator
 SUBST_FILES.gwt+=      webAppCreator
 SUBST_SED.gwt=         -e 's,java ,${PKG_JAVA_HOME}/bin/java ,g'
@@ -34,13 +33,12 @@
 SUBST_SED.gwt+=                -e 's,APPDIR=.*,APPDIR=${PREFIX}/${GWTDIR};,g'
 
 do-install:
-       ${INSTALL_SCRIPT} ${WRKSRC}/benchmarkViewer ${DESTDIR}${PREFIX}/bin
        ${INSTALL_SCRIPT} ${WRKSRC}/i18nCreator ${DESTDIR}${PREFIX}/bin
        ${INSTALL_SCRIPT} ${WRKSRC}/webAppCreator ${DESTDIR}${PREFIX}/bin
 
        ${INSTALL_DATA} ${WRKSRC}/*jar ${DESTDIR}${PREFIX}/${GWTDIR}
        ${INSTALL_DATA} ${WRKSRC}/*dtd ${DESTDIR}${PREFIX}/${GWTDIR}
-       ${INSTALL_DATA} ${WRKSRC}/*war ${DESTDIR}${PREFIX}/${GWTDIR}
+       ${INSTALL_DATA} ${WRKSRC}/*dll ${DESTDIR}${PREFIX}/${GWTDIR}
        ${INSTALL_DATA} ${WRKSRC}/*dll ${DESTDIR}${PREFIX}/${GWTDIR}
 
        cd ${WRKSRC} && pax -rw -pmp \
diff -r aa1153046385 -r 8c96873e13ce www/gwt/PLIST
--- a/www/gwt/PLIST     Tue Jul 05 19:00:23 2016 +0000
+++ b/www/gwt/PLIST     Tue Jul 05 19:27:02 2016 +0000
@@ -1,16 +1,16 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2012/05/13 07:51:18 ryoon Exp $
-bin/benchmarkViewer
+@comment $NetBSD: PLIST,v 1.2 2016/07/05 19:27:02 ryoon Exp $
 bin/i18nCreator
 bin/webAppCreator
 lib/java/gwt/gwt-api-checker.jar
-lib/java/gwt/gwt-benchmark-viewer.war
+lib/java/gwt/gwt-codeserver.jar
 lib/java/gwt/gwt-dev.jar
+lib/java/gwt/gwt-elemental.jar
 lib/java/gwt/gwt-ll.dll
 lib/java/gwt/gwt-module.dtd
 lib/java/gwt/gwt-servlet-deps.jar
 lib/java/gwt/gwt-servlet.jar
-lib/java/gwt/gwt-soyc-vis.jar
 lib/java/gwt/gwt-user.jar
+lib/java/gwt/requestfactory-apt-src.jar
 lib/java/gwt/requestfactory-apt.jar
 lib/java/gwt/requestfactory-client+src.jar
 lib/java/gwt/requestfactory-client-src.jar
@@ -46,19 +46,23 @@
 share/doc/gwt/doc/javadoc/com/google/gwt/activity/shared/class-use/FilteredActivityMapper.html
 share/doc/gwt/doc/javadoc/com/google/gwt/activity/shared/package-frame.html
 share/doc/gwt/doc/javadoc/com/google/gwt/activity/shared/package-summary.html
-share/doc/gwt/doc/javadoc/com/google/gwt/activity/shared/package-tree.html
 share/doc/gwt/doc/javadoc/com/google/gwt/activity/shared/package-use.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/Animation.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationScheduler.AnimationCallback.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationScheduler.AnimationHandle.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationScheduler.AnimationSupportDetector.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationScheduler.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationSchedulerImplStandard.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/AnimationSchedulerImplTimer.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/Animation.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationScheduler.AnimationCallback.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationScheduler.AnimationHandle.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationScheduler.AnimationSupportDetector.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationScheduler.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationSchedulerImplStandard.html
+share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/class-use/AnimationSchedulerImplTimer.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/package-frame.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/package-summary.html
-share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/package-tree.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/package-use.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/StubAnimationScheduler.StubAnimationHandle.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/StubAnimationScheduler.html
@@ -66,47 +70,326 @@
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/class-use/StubAnimationScheduler.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/package-frame.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/package-summary.html
-share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/package-tree.html
 share/doc/gwt/doc/javadoc/com/google/gwt/animation/client/testing/package-use.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/BenchmarkReport.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/BenchmarkShell.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/class-use/BenchmarkReport.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/class-use/BenchmarkShell.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Benchmark.BenchmarkStrategy.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Benchmark.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Category.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/IntRange.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/IterationTimeLimit.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Operator.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/RangeEnum.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/RangeField.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/RangeIterator.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Setup.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/Teardown.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Benchmark.BenchmarkStrategy.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Benchmark.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Category.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/IntRange.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/IterationTimeLimit.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Operator.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/RangeEnum.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/RangeField.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/RangeIterator.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Setup.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/class-use/Teardown.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/package-frame.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/package-summary.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/package-tree.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/client/package-use.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/package-frame.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/package-summary.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/package-tree.html
-share/doc/gwt/doc/javadoc/com/google/gwt/benchmarks/package-use.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AlertRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AlertRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AlertdialogRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AlertdialogRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ApplicationRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ApplicationRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AriaAttributeType.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AriaValueAttribute.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ArticleRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ArticleRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/Attribute.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/AutocompleteValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/BannerRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/BannerRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ButtonRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ButtonRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/CheckboxRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/CheckboxRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/CheckedValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ColumnheaderRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ColumnheaderRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ComboboxRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ComboboxRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/CommandRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ComplementaryRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ComplementaryRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/CompositeRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ContentinfoRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ContentinfoRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DefinitionRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DefinitionRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DialogRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DialogRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DirectoryRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DirectoryRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DocumentRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DocumentRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/DropeffectValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ExpandedValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ExtraAttribute.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/FormRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/FormRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GrabbedValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GridRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GridRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GridcellRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GridcellRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GroupRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/GroupRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/HeadingRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/HeadingRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/Id.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ImgRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ImgRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/InputRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/InvalidValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LandmarkRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LinkRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LinkRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListboxRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListboxRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListitemRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ListitemRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LiveValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LogRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/LogRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MainRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MainRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MarqueeRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MarqueeRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MathRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MathRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenubarRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenubarRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemcheckboxRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemcheckboxRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemradioRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/MenuitemradioRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/NavigationRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/NavigationRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/NoteRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/NoteRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/OptionRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/OptionRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/OrientationValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/PresentationRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/PresentationRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/PressedValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/PrimitiveValueAttribute.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ProgressbarRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ProgressbarRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/Property.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RadioRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RadioRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RadiogroupRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RadiogroupRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RangeRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RegionRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RegionRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RelevantValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/Role.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/Roles.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowgroupRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowgroupRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowheaderRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/RowheaderRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ScrollbarRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ScrollbarRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SearchRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SearchRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SectionRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SectionheadRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SelectRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SelectedValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SeparatorRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SeparatorRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SliderRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SliderRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SortValue.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SpinbuttonRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/SpinbuttonRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/State.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/StatusRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/StatusRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/StructureRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TabRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TabRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TablistRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TablistRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TabpanelRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TabpanelRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TextboxRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TextboxRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TimerRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TimerRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ToolbarRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/ToolbarRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TooltipRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TooltipRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreeRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreeRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreegridRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreegridRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreeitemRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/TreeitemRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/WidgetRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/WindowRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AlertRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AlertRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AlertdialogRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AlertdialogRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/ApplicationRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/ApplicationRoleImpl.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AriaAttributeType.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/AriaValueAttribute.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/ArticleRole.html
+share/doc/gwt/doc/javadoc/com/google/gwt/aria/client/class-use/ArticleRoleImpl.html



Home | Main Index | Thread Index | Old Index