MCPcopy Index your code
hub / github.com/arduino/Arduino / TargetPackageStub

Class TargetPackageStub

app/test/processing/app/debug/TargetPackageStub.java:6–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import java.util.Map;
5
6public class TargetPackageStub implements TargetPackage {
7
8 private final String id;
9
10 public TargetPackageStub(String id) {
11 this.id = id;
12 }
13
14 @Override
15 public String getId() {
16 return id;
17 }
18
19 @Override
20 public Map<String, TargetPlatform> getPlatforms() {
21 return null;
22 }
23
24 @Override
25 public Collection<TargetPlatform> platforms() {
26 return null;
27 }
28
29 @Override
30 public TargetPlatform get(String platform) {
31 return null;
32 }
33
34 @Override
35 public boolean hasPlatform(TargetPlatform platform) {
36 return false;
37 }
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected