| | |
| | | @Parameter(required = true, defaultValue = "true") |
| | | private Boolean isExtension; |
| | | |
| | | private final Map<String, StreamSourceFactory> componentDescriptors = |
| | | new LinkedHashMap<String, StreamSourceFactory>(); |
| | | private final Map<String, StreamSourceFactory> componentDescriptors = new LinkedHashMap<>(); |
| | | private TransformerFactory stylesheetFactory; |
| | | private Templates stylesheetMetaJava; |
| | | private Templates stylesheetServerJava; |
| | |
| | | private Templates stylesheetProfileCLI; |
| | | private Templates stylesheetMessages; |
| | | private Templates stylesheetManifest; |
| | | private final Queue<Future<?>> tasks = new LinkedList<Future<?>>(); |
| | | private final Queue<Future<?>> tasks = new LinkedList<>(); |
| | | |
| | | private final URIResolver resolver = new URIResolver() { |
| | | |
| | |
| | | } |
| | | |
| | | // Generate package-info.java files. |
| | | final Map<String, Templates> profileMap = new LinkedHashMap<String, Templates>(); |
| | | final Map<String, Templates> profileMap = new LinkedHashMap<>(); |
| | | profileMap.put("meta", stylesheetMetaPackageInfo); |
| | | profileMap.put("server", stylesheetServerPackageInfo); |
| | | profileMap.put("client", stylesheetClientPackageInfo); |