Interface DependencyInfo
-
- All Known Implementing Classes:
CompilerInput,JSModule,SimpleDependencyInfo
public interface DependencyInfoA data structure for JS dependency information for a single .js file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Gets the unique name / path of this file.java.lang.StringgetPathRelativeToClosureBase()Gets the path of this file relative to Closure's base.js file.java.util.Collection<java.lang.String>getProvides()Gets the symbols provided by this file.java.util.Collection<java.lang.String>getRequires()Gets the symbols required by this file.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the unique name / path of this file.
-
getPathRelativeToClosureBase
java.lang.String getPathRelativeToClosureBase()
Gets the path of this file relative to Closure's base.js file.
-
getProvides
java.util.Collection<java.lang.String> getProvides()
Gets the symbols provided by this file.
-
getRequires
java.util.Collection<java.lang.String> getRequires()
Gets the symbols required by this file.
-
-