|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.github.marceloverdijk.lesscss4j.LessSource
public class LessSource
Represents the metadata and content of a LESS source.
| Constructor Summary | |
|---|---|
LessSource(File file)
Constructs a new LessSource. |
|
| Method Summary | |
|---|---|
String |
getAbsolutePath()
Returns the absolute pathname of the LESS source. |
String |
getContent()
Returns the content of the LESS source. |
Map<String,LessSource> |
getImports()
Returns the LESS sources imported by this LESS source. |
long |
getLastModified()
Returns the time that the LESS source was last modified. |
long |
getLastModifiedIncludingImports()
Returns the time that the LESS source, or one of its imports, was last modified. |
String |
getNormalizedContent()
Returns the normalized content of the LESS source. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LessSource(File file)
throws FileNotFoundException,
IOException
LessSource.
This will read the metadata and content of the LESS source, and will automatically resolve the imports.
file - The File reference to the LESS source to read.
FileNotFoundException - If the LESS source (or one of its imports) could not be found.
IOException - If the LESS source cannot be read.| Method Detail |
|---|
public String getAbsolutePath()
public String getContent()
public String getNormalizedContent()
The normalized content represents the LESS source as a flattened source where import statements have been resolved and replaced by the actual content.
public long getLastModified()
long value representing the time the file was last modified, measured in milliseconds since the epoch (00:00:00 GMT, January 1, 1970).public long getLastModifiedIncludingImports()
long value representing the time the file was last modified, measured in milliseconds since the epoch (00:00:00 GMT, January 1, 1970).public Map<String,LessSource> getImports()
The returned imports are represented by a
Map<String, LessSource> which contains the filename and the
LessSource.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||