(Map<String, Object> config, List<Frame> frames)
| 30 | private final Frame[] frames; |
| 31 | |
| 32 | public TestFile(Map<String, Object> config, List<Frame> frames) { |
| 33 | this.config = new HashMap<>(config); |
| 34 | this.frames = frames.toArray(new Frame[frames.size()]); |
| 35 | } |
| 36 | |
| 37 | public <T> Optional<T> get(Class<T> kind, String option) { |
| 38 | Object o = config.get(option); |