| 24 | import java.util.Map; |
| 25 | |
| 26 | public interface TargetPackage { |
| 27 | |
| 28 | String getId(); |
| 29 | |
| 30 | Map<String, TargetPlatform> getPlatforms(); |
| 31 | |
| 32 | Collection<TargetPlatform> platforms(); |
| 33 | |
| 34 | TargetPlatform get(String platform); |
| 35 | |
| 36 | boolean hasPlatform(TargetPlatform platform); |
| 37 | } |
no outgoing calls
no test coverage detected