CompilerContextImpl.java
1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.ui.clientlibs.impl;
import com.adobe.granite.ui.clientlibs.script.CompilerContext;
import com.adobe.granite.ui.clientlibs.script.ScriptResourceProvider;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
public class CompilerContextImpl
implements CompilerContext {
private final ScriptResourceProvider provider;
private final String destinationPath;
private final Set<String> dependencies = new HashSet<String>();
public CompilerContextImpl(ScriptResourceProvider provider, String destinationPath) {
this.provider = provider;
this.destinationPath = destinationPath;
}
@Override
public ScriptResourceProvider getResourceProvider() {
return this.provider;
}
@Override
public String getDestinationPath() {
return this.destinationPath;
}
@Override
public Collection<String> getDependencies() {
return this.dependencies;
}
}