| | | 1 | void setSamplerRedirectAutomatically(boolean b) {↵
|
| | | 2 | samplerRedirectAutomatically = b;↵
|
| | | 3 | setProperty(new BooleanProperty(SAMPLER_REDIRECT_AUTOMATICALLY, b));↵
|
| | | 4 | }↵
|
|
1 | void setSamplerFollowRedirects(boolean b) {↵ | | 5 | public void setSamplerFollowRedirects(boolean b) {↵
|
2 | samplerFollowRedirects = b;↵ | | 6 | samplerFollowRedirects = b;↵
|
3 | setProperty(new BooleanProperty(SAMPLER_FOLLOW_REDIRECTS, b));↵ | | 7 | setProperty(new BooleanProperty(SAMPLER_FOLLOW_REDIRECTS, b));↵
|
4 | }↵ | | 8 | }↵
|
|
5 | /**↵ | | 9 | /**↵
|
6 | * @param b↵ | | 10 | * @param b↵
|
7 | */↵ | | 11 | */↵
|
8 | public void setUseKeepAlive(boolean b) {↵ | | 12 | public void setUseKeepAlive(boolean b) {↵
|
9 | useKeepAlive = b;↵ | | 13 | useKeepAlive = b;↵
|
10 | setProperty(new BooleanProperty(USE_KEEPALIVE, b));↵ | | 14 | setProperty(new BooleanProperty(USE_KEEPALIVE, b));↵
|
11 | }↵ | | 15 | }
|
|
12 | public void setSamplerDownloadImages(boolean b) {↵ | | | |
13 | samplerDownloadImages = b;↵ | | | |
14 | setProperty(new BooleanProperty(SAMPLER_DOWNLOAD_IMAGES, b));↵ | | | |
15 | } | | | |