Skip to content

Commit

Permalink
Adding alt attributes to img tags in javadocs to avoid occasional bui…
Browse files Browse the repository at this point in the history
…ld issues
  • Loading branch information
DavidMGross committed Jul 13, 2014
1 parent 06ebe1d commit 3f0f722
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/main/java/rx/observables/StringObservable.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class StringObservable {
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
* {@code byte[]}s
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
*
* @param i
* Source {@link InputStream}
Expand Down Expand Up @@ -127,7 +127,7 @@ public Observable<R> call(CloseableResource<S> t1) {
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
* {@code byte[]}s
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
*
* @param i
* Source {@link InputStream}
Expand Down Expand Up @@ -163,7 +163,7 @@ public void call(Subscriber<? super byte[]> o) {
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
* {@link String}s
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
*
* @param i
* Source {@link Reader}
Expand All @@ -177,7 +177,7 @@ public static Observable<String> from(final Reader i) {
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
* {@link String}s
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
*
* @param i
* Source {@link Reader}
Expand Down Expand Up @@ -213,7 +213,7 @@ public void call(Subscriber<? super String> o) {
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
* and where handles when a multibyte character spans two chunks.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
*
* @param src
* @param charsetName
Expand All @@ -227,7 +227,7 @@ public static Observable<String> decode(Observable<byte[]> src, String charsetNa
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
* and where handles when a multibyte character spans two chunks.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
*
* @param src
* @param charset
Expand All @@ -242,7 +242,7 @@ public static Observable<String> decode(Observable<byte[]> src, Charset charset)
* and where it handles when a multibyte character spans two chunks.
* This method allows for more control over how malformed and unmappable characters are handled.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
*
* @param src
* @param charsetDecoder
Expand Down Expand Up @@ -333,7 +333,7 @@ public boolean process(byte[] next, ByteBuffer last, boolean endOfInput) {
/**
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
*
* @param src
* @param charsetName
Expand All @@ -346,7 +346,7 @@ public static Observable<byte[]> encode(Observable<String> src, String charsetNa
/**
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
*
* @param src
* @param charset
Expand All @@ -360,7 +360,7 @@ public static Observable<byte[]> encode(Observable<String> src, Charset charset)
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
* This method allows for more control over how malformed and unmappable characters are handled.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
*
* @param src
* @param charsetEncoder
Expand All @@ -386,7 +386,7 @@ public byte[] call(String str) {
* Gather up all of the strings in to one string to be able to use it as one message. Don't use
* this on infinite streams.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.stringConcat.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.stringConcat.png" alt="">
*
* @param src
* @return the Observable returing all strings concatenated as a single string
Expand Down Expand Up @@ -424,7 +424,7 @@ public String call(Object obj) {
*
* See {@link Pattern}
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.split.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.split.png" alt="">
*
* @param src
* @param regex
Expand Down Expand Up @@ -494,7 +494,7 @@ private void output(String part) {
* Concatenates the sequence of values by adding a separator
* between them and emitting the result once the source completes.
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.join.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.join.png" alt="">
* <p>
* The conversion from the value type to String is performed via
* {@link java.lang.String#valueOf(java.lang.Object)} calls.
Expand Down Expand Up @@ -600,7 +600,7 @@ public String toString() {
/**
* Splits the {@link Observable} of Strings by lines and numbers them (zero based index)
* <p>
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.byLine.png">
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.byLine.png" alt="">
*
* @param source
* @return the Observable conaining the split lines of the source
Expand Down

0 comments on commit 3f0f722

Please sign in to comment.