Package net.sf.statcvs.output
Class UrlCssHandler
- java.lang.Object
-
- net.sf.statcvs.output.UrlCssHandler
-
- All Implemented Interfaces:
CssHandler
public class UrlCssHandler extends java.lang.Object implements CssHandler
CSS handler for a CSS file specified by a HTTP URL.- Author:
- Richard Cyganiak
-
-
Constructor Summary
Constructors Constructor Description UrlCssHandler(java.net.URL url)
Creates a new UrlCssHandler for a CSS file located at a given URL.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkForMissingResources()
We could check here if there is a real CSS file at the URL, but this would require net access, so we just do nothing.void
createOutputFiles()
We don't create any output files.java.lang.String
getLink()
Simply return the URLjava.lang.String
toString()
toString
-
-
-
Method Detail
-
getLink
public java.lang.String getLink()
Simply return the URL- Specified by:
getLink
in interfaceCssHandler
- Returns:
- a link to the CSS file
- See Also:
CssHandler.getLink()
-
checkForMissingResources
public void checkForMissingResources() throws ConfigurationException
We could check here if there is a real CSS file at the URL, but this would require net access, so we just do nothing.- Specified by:
checkForMissingResources
in interfaceCssHandler
- Throws:
ConfigurationException
- if some resource is missing.- See Also:
CssHandler.checkForMissingResources()
-
createOutputFiles
public void createOutputFiles() throws java.io.IOException
We don't create any output files. We could copy the CSS file from the URL to the output dir, but this would require net access, so we just do nothing.- Specified by:
createOutputFiles
in interfaceCssHandler
- Throws:
java.io.IOException
- if an output file can't be created- See Also:
CssHandler.createOutputFiles()
-
toString
public java.lang.String toString()
toString- Overrides:
toString
in classjava.lang.Object
- Returns:
- string
-
-