Migrate from Bazel
|
After Width: | Height: | Size: 177 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -0,0 +1,28 @@
|
|||
@startuml
|
||||
|
||||
left to right direction
|
||||
hide circle
|
||||
|
||||
|
||||
package loader <<Frame>> {
|
||||
interface ImageLoader
|
||||
package io_impl <<Frame>> {
|
||||
ImageIoLoader --|> ImageLoader
|
||||
}
|
||||
}
|
||||
|
||||
package differ <<Frame>> {
|
||||
interface ImageDiffer
|
||||
package impl <<Frame>> {
|
||||
ImageDifferImpl -right-|> ImageDiffer
|
||||
}
|
||||
}
|
||||
|
||||
package data <<Frame>> {
|
||||
class Image
|
||||
class DiffResult
|
||||
}
|
||||
|
||||
Phosphorus -- ImageLoader
|
||||
Phosphorus -- ImageDiffer
|
||||
@enduml
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
@startuml
|
||||
digraph G {
|
||||
bgcolor="transparent"
|
||||
rankdir="LR";
|
||||
|
||||
Request [
|
||||
color="#4C566A",
|
||||
style=filled,
|
||||
fillcolor="#5e81ac",
|
||||
fontcolor="#eceff4"
|
||||
shape=box,
|
||||
fontname="Verdana",
|
||||
fontsize="11pt",
|
||||
];
|
||||
Handler [
|
||||
color="#4C566A",
|
||||
style=filled,
|
||||
fillcolor="#5e81ac",
|
||||
fontcolor="#eceff4"
|
||||
shape=box,
|
||||
fontname="Verdana",
|
||||
fontsize="11pt",
|
||||
];
|
||||
Response [
|
||||
color="#4C566A",
|
||||
style=filled,
|
||||
fillcolor="#5e81ac",
|
||||
fontcolor="#eceff4"
|
||||
shape=box,
|
||||
fontname="Verdana",
|
||||
fontsize="11pt",
|
||||
];
|
||||
|
||||
Plugin1 [
|
||||
color="#4C566A",
|
||||
style="rounded, filled",
|
||||
fillcolor="#8fbcbb",
|
||||
fontcolor="#4C566A"
|
||||
shape=box,
|
||||
label="Plugin",
|
||||
fontname="Verdana",
|
||||
fontsize="11pt",
|
||||
];
|
||||
Plugin2 [
|
||||
color="#4C566A",
|
||||
style="rounded, filled",
|
||||
fillcolor="#8fbcbb",
|
||||
fontcolor="#4C566A"
|
||||
shape=box,
|
||||
label="Plugin",
|
||||
fontname="Verdana",
|
||||
fontsize="11pt",
|
||||
];
|
||||
|
||||
Request -> Plugin1 [color="#4C566A"]
|
||||
Plugin1 -> Handler [color="#4C566A"]
|
||||
Handler -> Plugin2 [color="#4C566A"]
|
||||
Plugin2 -> Response [color="#4C566A"]
|
||||
}
|
||||
|
||||
|
||||
@enduml
|
||||
BIN
static/images/articles/recyclerview-basics/recyclerview-1.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 63 KiB |
BIN
static/images/articles/recyclerview-basics/time.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -0,0 +1,3 @@
|
|||
@startuml
|
||||
Alice -> Bob: SYN
|
||||
@enduml
|
||||