1
1
/*
2
- * Copyright (c) 2015, 2016 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2015, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
20
20
* or visit www.oracle.com if you need additional information or have any
21
21
* questions.
22
22
*/
23
+ package jdk .test .lib .compiler ;
23
24
24
25
import javax .tools .*;
25
26
import java .io .ByteArrayOutputStream ;
31
32
import java .util .Map ;
32
33
import java .util .stream .Collectors ;
33
34
34
- class Compiler {
35
+ public class Compiler {
35
36
final private Map <String ,String > input ;
36
37
private List <String > options ;
37
38
38
- Compiler (Map <String ,String > input ) {
39
+ public Compiler (Map <String ,String > input ) {
39
40
this .input = input ;
40
41
}
41
42
42
- Compiler setRelease (int release ) {
43
+ public Compiler setRelease (int release ) {
43
44
// Setting the -release option does not work for some reason
44
45
// so do it the old fashioned way
45
46
// options = Arrays.asList("-release", String.valueOf(release));
@@ -48,7 +49,7 @@ Compiler setRelease(int release) {
48
49
return this ;
49
50
}
50
51
51
- Map <String ,byte []> compile () {
52
+ public Map <String ,byte []> compile () {
52
53
List <SourceFileObject > cunits = createCompilationUnits ();
53
54
Map <String ,ClassFileObject > cfos = createClassFileObjects ();
54
55
JavaCompiler jc = ToolProvider .getSystemJavaCompiler ();
0 commit comments