blob: 5a60aa2bef78f193786fd835a0c97942a95838ab [file] [log] [blame]
Andreas Lundblad3672dbc2015-08-25 15:14:41 +02001/*
Andreas Lundblade85033c2016-03-22 13:14:12 +01002 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
Andreas Lundblad3672dbc2015-08-25 15:14:41 +02003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package com.sun.tools.sjavac.server;
27
28import java.io.Serializable;
29import java.net.URI;
30import java.util.HashMap;
31import java.util.Map;
32import java.util.Set;
33
Andreas Lundblade85033c2016-03-22 13:14:12 +010034import com.sun.tools.javac.main.Main.Result;
Andreas Lundblad3672dbc2015-08-25 15:14:41 +020035import com.sun.tools.sjavac.pubapi.PubApi;
36
37/**
38 *
39 * <p><b>This is NOT part of any supported API.
40 * If you write code that depends on this, you do so at your own risk.
41 * This code and its internal interfaces are subject to change or
42 * deletion without notice.</b>
43 */
44public class CompilationSubResult implements Serializable {
45
46 static final long serialVersionUID = 46739181113L;
47
Andreas Lundblade85033c2016-03-22 13:14:12 +010048 public Result result;
Andreas Lundblad3672dbc2015-08-25 15:14:41 +020049 public Map<String, Set<URI>> packageArtifacts = new HashMap<>();
50 public Map<String, Map<String, Set<String>>> packageDependencies = new HashMap<>();
51 public Map<String, Map<String, Set<String>>> packageCpDependencies = new HashMap<>();
52 public Map<String, PubApi> packagePubapis = new HashMap<>();
53 public Map<String, PubApi> dependencyPubapis = new HashMap<>();
54 public String stdout = "";
55 public String stderr = "";
56
Andreas Lundblade85033c2016-03-22 13:14:12 +010057 public CompilationSubResult(Result result) {
58 this.result = result;
Andreas Lundblad3672dbc2015-08-25 15:14:41 +020059 }
60
Andreas Lundblade85033c2016-03-22 13:14:12 +010061 public void setResult(Result result) {
62 this.result = result;
Andreas Lundblad3672dbc2015-08-25 15:14:41 +020063 }
64}