diff --git a/src/main/markdown/doc/latest/RefJreEmulation.md b/src/main/markdown/doc/latest/RefJreEmulation.md index 4f10e85f1..17d5fc6d2 100644 --- a/src/main/markdown/doc/latest/RefJreEmulation.md +++ b/src/main/markdown/doc/latest/RefJreEmulation.md @@ -64,8 +64,14 @@ Note that in some cases, only a subset of methods is supported for a given type.
PrintStream
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()
+
Reader
+
Reader(), close(), mark(int), markSupported(), read(), read(char[]), read(char[], int, int), ready(), reset(), skip(long)
+
Serializable
+
StringReader
+
StringReader(String), close(), read(char[], int, int)
+
UncheckedIOException
UncheckedIOException(String, IOException), UncheckedIOException(IOException), getCause()
@@ -102,7 +108,7 @@ Note that in some cases, only a subset of methods is supported for a given type.
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()
CharSequence
-
charAt(int), length(), subSequence(int, int), toString(), chars(), $isInstance(HasCharSequenceTypeMarker)
+
charAt(int), length(), subSequence(int, int), toString(), chars()
Character
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
@@ -120,7 +126,7 @@ Note that in some cases, only a subset of methods is supported for a given type.
Cloneable
Comparable
-
compareTo(T), $isInstance(HasComparableTypeMarker)
+
compareTo(T)
Deprecated
@@ -175,9 +181,6 @@ Note that in some cases, only a subset of methods is supported for a given type.
NegativeArraySizeException
NegativeArraySizeException(), NegativeArraySizeException(String)
-
NoSuchMethodException
-
NoSuchMethodException(), NoSuchMethodException(String)
-
NullPointerException
NullPointerException(), NullPointerException(String)
@@ -404,7 +407,7 @@ Note that in some cases, only a subset of methods is supported for a given type.
Collections
EMPTY_LIST, EMPTY_MAP, EMPTY_SET
-
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)
+
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)
Comparator
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()
@@ -609,9 +612,26 @@ Note that in some cases, only a subset of methods is supported for a given type.
Executor
execute(Runnable)
+
ExecutorService
+
shutdown(), shutdownNow(), isShutdown(), isTerminated(), submit(Callable), submit(Runnable, T), submit(Runnable), invokeAll(Collection), invokeAll(Collection, long, TimeUnit), invokeAny(Collection), invokeAny(Collection, long, TimeUnit)
+
Executors
callable(Runnable, T), callable(Runnable)
+
Flow
+
defaultBufferSize()
+ +
Flow.Processor
+ +
Flow.Publisher
+
subscribe(Flow.Subscriber)
+ +
Flow.Subscriber
+
onSubscribe(Flow.Subscription), onNext(T), onError(Throwable), onComplete()
+ +
Flow.Subscription
+
request(long), cancel()
+
Future
cancel(boolean), isCancelled(), isDone(), get(), get(long, TimeUnit)
@@ -620,6 +640,9 @@ Note that in some cases, only a subset of methods is supported for a given type.
RunnableFuture
+
ScheduledExecutorService
+
schedule(Runnable, long, TimeUnit), schedule(Callable, long, TimeUnit), scheduleAtFixedRate(Runnable, long, long, TimeUnit), scheduleWithFixedDelay(Runnable, long, long, TimeUnit)
+
ScheduledFuture
TimeUnit
@@ -641,6 +664,9 @@ Note that in some cases, only a subset of methods is supported for a given type.
AtomicLong
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()
+
AtomicReference
+
AtomicReference(), AtomicReference(V), compareAndSet(V, V), get(), getAndSet(V), lazySet(V), set(V), weakCompareAndSet(V, V), toString()
+
AtomicReferenceArray
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()
diff --git a/src/main/site/javadoc/latest/allclasses-frame.html b/src/main/site/javadoc/latest/allclasses-frame.html index 99b5c07de..4e26304dd 100644 --- a/src/main/site/javadoc/latest/allclasses-frame.html +++ b/src/main/site/javadoc/latest/allclasses-frame.html @@ -1105,11 +1105,15 @@

All Classes

  • JsArrayNumber
  • JsArrayString
  • JsArrayUtils
  • +
  • JsAsync
  • JsConstructor
  • JsDate
  • +
  • JsEnum
  • JsFunction
  • JsIgnore
  • JsMethod
  • +
  • JsNonNull
  • +
  • JsNullable
  • JsoEval
  • JsoInspector
  • JsoInspector.JsoProperty
  • diff --git a/src/main/site/javadoc/latest/allclasses-noframe.html b/src/main/site/javadoc/latest/allclasses-noframe.html index 752a77e51..f884473f3 100644 --- a/src/main/site/javadoc/latest/allclasses-noframe.html +++ b/src/main/site/javadoc/latest/allclasses-noframe.html @@ -1105,11 +1105,15 @@

    All Classes

  • JsArrayNumber
  • JsArrayString
  • JsArrayUtils
  • +
  • JsAsync
  • JsConstructor
  • JsDate
  • +
  • JsEnum
  • JsFunction
  • JsIgnore
  • JsMethod
  • +
  • JsNonNull
  • +
  • JsNullable
  • JsoEval
  • JsoInspector
  • JsoInspector.JsoProperty
  • diff --git a/src/main/site/javadoc/latest/com/google/gwt/activity/shared/AbstractActivity.html b/src/main/site/javadoc/latest/com/google/gwt/activity/shared/AbstractActivity.html index 427b46e28..106b5315f 100644 --- a/src/main/site/javadoc/latest/com/google/gwt/activity/shared/AbstractActivity.html +++ b/src/main/site/javadoc/latest/com/google/gwt/activity/shared/AbstractActivity.html @@ -43,7 +43,7 @@
  • Deprecated
  • Help
  • -
    GWT 2.8.2
    +
    GWT 2.9.0
    @@ -256,7 +255,7 @@

    isNative

  • Deprecated
  • Help
  • -
    GWT 2.8.2
    +
    GWT 2.9.0