• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

alibaba / jetcache / #405

16 Apr 2024 05:58AM UTC coverage: 0.0% (-88.9%) from 88.866%
#405

push

areyouok
add encoding to fix coverage report

0 of 5353 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/jetcache-core/src/main/java/com/alicp/jetcache/MultiLevelCacheConfig.java
1
package com.alicp.jetcache;
2

3
import java.util.ArrayList;
4
import java.util.List;
5

6
/**
7
 * Created on 2017/5/24.
8
 *
9
 * @author huangli
10
 */
11
public class MultiLevelCacheConfig<K, V> extends CacheConfig<K, V> {
×
12
    private List<Cache<K, V>> caches = new ArrayList<>();
×
13
    private boolean useExpireOfSubCache;
14

15
    @Override
16
    public MultiLevelCacheConfig clone() {
17
        MultiLevelCacheConfig copy = (MultiLevelCacheConfig) super.clone();
×
18
        if (caches != null) {
×
19
            copy.caches = new ArrayList(this.caches);
×
20
        }
21
        return copy;
×
22
    }
23

24
    public List<Cache<K, V>> getCaches() {
25
        return caches;
×
26
    }
27

28
    public void setCaches(List<Cache<K, V>> caches) {
29
        this.caches = caches;
×
30
    }
×
31

32
    public boolean isUseExpireOfSubCache() {
33
        return useExpireOfSubCache;
×
34
    }
35

36
    public void setUseExpireOfSubCache(boolean useExpireOfSubCache) {
37
        this.useExpireOfSubCache = useExpireOfSubCache;
×
38
    }
×
39
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc