Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Javadoc and emulation reference for 2.9.0 release #302

Merged
merged 1 commit into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
38 changes: 32 additions & 6 deletions src/main/markdown/doc/latest/RefJreEmulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,14 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html">PrintStream</a></dt>
<dd>PrintStream(OutputStream), print(boolean), print(char), print(char[]), print(double), print(float), print(int), print(long), print(Object), print(String), println(), println(boolean), println(char), println(char[]), println(double), println(float), println(int), println(long), println(Object), println(String), flush()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/io/Reader.html">Reader</a></dt>
<dd>Reader(), close(), mark(int), markSupported(), read(), read(char[]), read(char[], int, int), ready(), reset(), skip(long)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html">Serializable</a></dt>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/io/StringReader.html">StringReader</a></dt>
<dd>StringReader(String), close(), read(char[], int, int)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/io/UncheckedIOException.html">UncheckedIOException</a></dt>
<dd>UncheckedIOException(String, IOException), UncheckedIOException(IOException), getCause()</dd>

Expand Down Expand Up @@ -102,7 +108,7 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dd>Byte(byte), Byte(String), compare(byte, byte), decode(String), hashCode(byte), parseByte(String), parseByte(String, int), toString(byte), valueOf(byte), valueOf(String), valueOf(String, int), byteValue(), compareTo(Byte), doubleValue(), equals(Object), floatValue(), hashCode(), intValue(), longValue(), shortValue(), toString()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/CharSequence.html">CharSequence</a></dt>
<dd>charAt(int), length(), subSequence(int, int), toString(), chars(), $isInstance(HasCharSequenceTypeMarker)</dd>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, looks like we had that issue already with those internal methods!

(since 2.8.0, present in the last two commits that I made 🤦)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, but since you can't access them as they aren't part of the JRE, it does seem reasonable to remove them (and possibly update tooling to look for these j2cl-specific methods and avoid them to begin with.

<dd>charAt(int), length(), subSequence(int, int), toString(), chars()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html">Character</a></dt>
<dd style='margin-bottom: 0.5em;'>TYPE, MIN_RADIX, MAX_RADIX, MIN_VALUE, MAX_VALUE, MIN_SURROGATE, MAX_SURROGATE, MIN_LOW_SURROGATE, MAX_LOW_SURROGATE, MIN_HIGH_SURROGATE, MAX_HIGH_SURROGATE, MIN_SUPPLEMENTARY_CODE_POINT, MIN_CODE_POINT, MAX_CODE_POINT, SIZE, BYTES</dd>
Expand All @@ -120,7 +126,7 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html">Cloneable</a></dt>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html">Comparable</a></dt>
<dd>compareTo(T), $isInstance(HasComparableTypeMarker)</dd>
<dd>compareTo(T)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html">Deprecated</a></dt>

Expand Down Expand Up @@ -175,9 +181,6 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/NegativeArraySizeException.html">NegativeArraySizeException</a></dt>
<dd>NegativeArraySizeException(), NegativeArraySizeException(String)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html">NoSuchMethodException</a></dt>
<dd>NoSuchMethodException(), NoSuchMethodException(String)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/NullPointerException.html">NullPointerException</a></dt>
<dd>NullPointerException(), NullPointerException(String)</dd>

Expand Down Expand Up @@ -404,7 +407,7 @@ Note that in some cases, only a subset of methods is supported for a given type.

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Collections.html">Collections</a></dt>
<dd style='margin-bottom: 0.5em;'>EMPTY_LIST, EMPTY_MAP, EMPTY_SET</dd>
<dd>addAll(Collection, T[]), asLifoQueue(Deque), binarySearch(List, T), binarySearch(List, T, Comparator), copy(List, List), disjoint(Collection, Collection), emptyIterator(), emptyList(), emptyListIterator(), emptyMap(), emptySet(), enumeration(Collection), fill(List, T), frequency(Collection, Object), list(Enumeration), max(Collection), max(Collection, Comparator), min(Collection), min(Collection, Comparator), newSetFromMap(Map), nCopies(int, T), replaceAll(List, T, T), reverse(List), reverseOrder(), reverseOrder(Comparator), rotate(List, int), shuffle(List), shuffle(List, Random), singleton(T), singletonList(T), singletonMap(K, V), sort(List), sort(List, Comparator), swap(List, int, int), unmodifiableCollection(Collection), unmodifiableList(List), unmodifiableMap(Map), unmodifiableSet(Set), unmodifiableSortedMap(SortedMap), unmodifiableSortedSet(SortedSet)</dd>
<dd>synchronizedCollection(Collection), synchronizedList(List), synchronizedMap(Map), synchronizedNavigableMap(NavigableMap), synchronizedNavigableSet(NavigableSet), synchronizedSet(Set), synchronizedSortedMap(SortedMap), synchronizedSortedSet(SortedSet), addAll(Collection, T[]), asLifoQueue(Deque), binarySearch(List, T), binarySearch(List, T, Comparator), copy(List, List), disjoint(Collection, Collection), emptyIterator(), emptyList(), emptyListIterator(), emptyMap(), emptySet(), enumeration(Collection), fill(List, T), frequency(Collection, Object), list(Enumeration), max(Collection), max(Collection, Comparator), min(Collection), min(Collection, Comparator), newSetFromMap(Map), nCopies(int, T), replaceAll(List, T, T), reverse(List), reverseOrder(), reverseOrder(Comparator), rotate(List, int), shuffle(List), shuffle(List, Random), singleton(T), singletonList(T), singletonMap(K, V), sort(List), sort(List, Comparator), swap(List, int, int), unmodifiableCollection(Collection), unmodifiableList(List), unmodifiableMap(Map), unmodifiableSet(Set), unmodifiableSortedMap(SortedMap), unmodifiableSortedSet(SortedSet)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html">Comparator</a></dt>
<dd>compare(T, T), equals(Object), reversed(), thenComparing(Comparator), thenComparing(Function, Comparator), thenComparing(Function), thenComparingInt(ToIntFunction), thenComparingLong(ToLongFunction), thenComparingDouble(ToDoubleFunction), comparing(Function, Comparator), comparing(Function), comparingDouble(ToDoubleFunction), comparingInt(ToIntFunction), comparingLong(ToLongFunction), naturalOrder(), nullsFirst(Comparator), nullsLast(Comparator), reverseOrder()</dd>
Expand Down Expand Up @@ -609,9 +612,26 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Executor.html">Executor</a></dt>
<dd>execute(Runnable)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html">ExecutorService</a></dt>
<dd>shutdown(), shutdownNow(), isShutdown(), isTerminated(), submit(Callable), submit(Runnable, T), submit(Runnable), invokeAll(Collection), invokeAll(Collection, long, TimeUnit), invokeAny(Collection), invokeAny(Collection, long, TimeUnit)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Executors.html">Executors</a></dt>
<dd>callable(Runnable, T), callable(Runnable)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Flow.html">Flow</a></dt>
<dd>defaultBufferSize()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Flow.Processor.html">Flow.Processor</a></dt>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Flow.Publisher.html">Flow.Publisher</a></dt>
<dd>subscribe(Flow.Subscriber)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Flow.Subscriber.html">Flow.Subscriber</a></dt>
<dd>onSubscribe(Flow.Subscription), onNext(T), onError(Throwable), onComplete()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Flow.Subscription.html">Flow.Subscription</a></dt>
<dd>request(long), cancel()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html">Future</a></dt>
<dd>cancel(boolean), isCancelled(), isDone(), get(), get(long, TimeUnit)</dd>

Expand All @@ -620,6 +640,9 @@ Note that in some cases, only a subset of methods is supported for a given type.

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/RunnableFuture.html">RunnableFuture</a></dt>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledExecutorService.html">ScheduledExecutorService</a></dt>
<dd>schedule(Runnable, long, TimeUnit), schedule(Callable, long, TimeUnit), scheduleAtFixedRate(Runnable, long, long, TimeUnit), scheduleWithFixedDelay(Runnable, long, long, TimeUnit)</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledFuture.html">ScheduledFuture</a></dt>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html">TimeUnit</a></dt>
Expand All @@ -641,6 +664,9 @@ Note that in some cases, only a subset of methods is supported for a given type.
<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html">AtomicLong</a></dt>
<dd>AtomicLong(long), AtomicLong(), get(), set(long), lazySet(long), getAndSet(long), compareAndSet(long, long), getAndIncrement(), getAndDecrement(), getAndAdd(long), incrementAndGet(), decrementAndGet(), addAndGet(long), toString(), intValue(), longValue(), floatValue(), doubleValue()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicReference.html">AtomicReference</a></dt>
<dd>AtomicReference(), AtomicReference(V), compareAndSet(V, V), get(), getAndSet(V), lazySet(V), set(V), weakCompareAndSet(V, V), toString()</dd>

<dt><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicReferenceArray.html">AtomicReferenceArray</a></dt>
<dd>AtomicReferenceArray(V[]), AtomicReferenceArray(int), compareAndSet(int, V, V), get(int), getAndSet(int, V), lazySet(int, V), length(), set(int, V), weakCompareAndSet(int, V, V), toString()</dd>
</dl>
Expand Down
4 changes: 4 additions & 0 deletions src/main/site/javadoc/latest/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -1105,11 +1105,15 @@ <h1 class="bar">All&nbsp;Classes</h1>
<li><a href="com/google/gwt/core/client/JsArrayNumber.html" title="class in com.google.gwt.core.client" target="classFrame">JsArrayNumber</a></li>
<li><a href="com/google/gwt/core/client/JsArrayString.html" title="class in com.google.gwt.core.client" target="classFrame">JsArrayString</a></li>
<li><a href="com/google/gwt/core/client/JsArrayUtils.html" title="class in com.google.gwt.core.client" target="classFrame">JsArrayUtils</a></li>
<li><a href="jsinterop/annotations/JsAsync.html" title="annotation in jsinterop.annotations" target="classFrame">JsAsync</a></li>
<li><a href="jsinterop/annotations/JsConstructor.html" title="annotation in jsinterop.annotations" target="classFrame">JsConstructor</a></li>
<li><a href="com/google/gwt/core/client/JsDate.html" title="class in com.google.gwt.core.client" target="classFrame">JsDate</a></li>
<li><a href="jsinterop/annotations/JsEnum.html" title="annotation in jsinterop.annotations" target="classFrame">JsEnum</a></li>
<li><a href="jsinterop/annotations/JsFunction.html" title="annotation in jsinterop.annotations" target="classFrame">JsFunction</a></li>
<li><a href="jsinterop/annotations/JsIgnore.html" title="annotation in jsinterop.annotations" target="classFrame">JsIgnore</a></li>
<li><a href="jsinterop/annotations/JsMethod.html" title="annotation in jsinterop.annotations" target="classFrame">JsMethod</a></li>
<li><a href="jsinterop/annotations/JsNonNull.html" title="annotation in jsinterop.annotations" target="classFrame">JsNonNull</a></li>
<li><a href="jsinterop/annotations/JsNullable.html" title="annotation in jsinterop.annotations" target="classFrame">JsNullable</a></li>
<li><a href="com/google/gwt/core/ext/debug/JsoEval.html" title="class in com.google.gwt.core.ext.debug" target="classFrame">JsoEval</a></li>
<li><a href="com/google/gwt/core/client/debug/JsoInspector.html" title="class in com.google.gwt.core.client.debug" target="classFrame">JsoInspector</a></li>
<li><a href="com/google/gwt/core/client/debug/JsoInspector.JsoProperty.html" title="class in com.google.gwt.core.client.debug" target="classFrame">JsoInspector.JsoProperty</a></li>
Expand Down
4 changes: 4 additions & 0 deletions src/main/site/javadoc/latest/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -1105,11 +1105,15 @@ <h1 class="bar">All&nbsp;Classes</h1>
<li><a href="com/google/gwt/core/client/JsArrayNumber.html" title="class in com.google.gwt.core.client">JsArrayNumber</a></li>
<li><a href="com/google/gwt/core/client/JsArrayString.html" title="class in com.google.gwt.core.client">JsArrayString</a></li>
<li><a href="com/google/gwt/core/client/JsArrayUtils.html" title="class in com.google.gwt.core.client">JsArrayUtils</a></li>
<li><a href="jsinterop/annotations/JsAsync.html" title="annotation in jsinterop.annotations">JsAsync</a></li>
<li><a href="jsinterop/annotations/JsConstructor.html" title="annotation in jsinterop.annotations">JsConstructor</a></li>
<li><a href="com/google/gwt/core/client/JsDate.html" title="class in com.google.gwt.core.client">JsDate</a></li>
<li><a href="jsinterop/annotations/JsEnum.html" title="annotation in jsinterop.annotations">JsEnum</a></li>
<li><a href="jsinterop/annotations/JsFunction.html" title="annotation in jsinterop.annotations">JsFunction</a></li>
<li><a href="jsinterop/annotations/JsIgnore.html" title="annotation in jsinterop.annotations">JsIgnore</a></li>
<li><a href="jsinterop/annotations/JsMethod.html" title="annotation in jsinterop.annotations">JsMethod</a></li>
<li><a href="jsinterop/annotations/JsNonNull.html" title="annotation in jsinterop.annotations">JsNonNull</a></li>
<li><a href="jsinterop/annotations/JsNullable.html" title="annotation in jsinterop.annotations">JsNullable</a></li>
<li><a href="com/google/gwt/core/ext/debug/JsoEval.html" title="class in com.google.gwt.core.ext.debug">JsoEval</a></li>
<li><a href="com/google/gwt/core/client/debug/JsoInspector.html" title="class in com.google.gwt.core.client.debug">JsoInspector</a></li>
<li><a href="com/google/gwt/core/client/debug/JsoInspector.JsoProperty.html" title="class in com.google.gwt.core.client.debug">JsoInspector.JsoProperty</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -289,7 +289,7 @@ <h4>onStop</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -251,7 +251,7 @@ <h4>start</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -329,7 +329,7 @@ <h4>setDisplay</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -182,7 +182,7 @@ <h4>getActivity</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -243,7 +243,7 @@ <h4>getActivity</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -183,7 +183,7 @@ <h4>filter</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -267,7 +267,7 @@ <h4>getActivity</h4>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -87,7 +87,7 @@ <h2 title="Uses of Class com.google.gwt.activity.shared.AbstractActivity" class=
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down Expand Up @@ -155,7 +155,7 @@ <h3>Uses of <a href="../../../../../../com/google/gwt/activity/shared/Activity.h
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage">GWT 2.8.2</div>
<div class="aboutLanguage">GWT 2.9.0</div>
</div>
<div class="subNav">
<ul class="navList">
Expand Down
Loading