summaryrefslogtreecommitdiffstats
path: root/styling/StyleChecker.java
diff options
context:
space:
mode:
Diffstat (limited to 'styling/StyleChecker.java')
-rw-r--r--styling/StyleChecker.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/styling/StyleChecker.java b/styling/StyleChecker.java
new file mode 100644
index 0000000..4905f25
--- /dev/null
+++ b/styling/StyleChecker.java
@@ -0,0 +1,20 @@
+package scruf.styling;
+
+import scruf.io.*;
+import java.io.*;
+public class StyleChecker {
+ private File styleSheet;
+ private File curDir;
+ private String styleContent;
+
+ public void resolve(File curDir) {
+ this.curDir = curDir.getAbsoluteFile();
+ styleSheet = new File(curDir,"style.css");
+ // if style shee doesn't exists, copy default sheet
+ // to the directory.
+ if(!styleSheet.exists()) {
+ styleContent = new ReadFile(new File("scruf/styling/style.css")).getContent();
+ new WriteFile(styleSheet,styleContent).write();
+ }
+ }
+} \ No newline at end of file