summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-05-19 12:19:20 +0000
committerKurt Zenker <kz@openoffice.org>2004-05-19 12:19:20 +0000
commit843ae281aec0148e00a8e5bdbd9d25f9dcf1decb (patch)
treee4add810468b7bfe1b34e4d823875035cb28e14c
parentc5a6bf5af80fb21afc44aebe7a8130aaf7336547 (diff)
INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED
2004/03/12 16:17:00 rpiterman 1.1.2.3: documentation and small implementation-fixes 2004/02/11 17:07:23 rpiterman 1.1.2.2: durther developement 2003/10/21 13:28:05 rpiterman 1.1.2.1: webwizard configuration-access objects
-rw-r--r--wizards/com/sun/star/wizards/web/data/TypeDetection.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/web/data/TypeDetection.java b/wizards/com/sun/star/wizards/web/data/TypeDetection.java
new file mode 100644
index 000000000000..7a2351435960
--- /dev/null
+++ b/wizards/com/sun/star/wizards/web/data/TypeDetection.java
@@ -0,0 +1,56 @@
+/*
+ * FileTypes.java
+ *
+ * Created on 29. September 2003, 18:52
+ */
+
+package com.sun.star.wizards.web.data;
+/**
+ *
+ * @author rpiterman
+ */
+public class TypeDetection {
+
+ /**
+ * a document which will open in writer.
+ */
+ public final static String WRITER_DOC = "writer";
+ /**
+ * a document which will open in calc.
+ */
+ public final static String CALC_DOC = "calc";
+ /**
+ * a document which will open in impress.
+ */
+ public final static String IMPRESS_DOC = "impress";
+ /**
+ * a document which will open in draw.
+ */
+ public final static String DRAW_DOC = "draw";
+
+ /**
+ * an HTML document
+ */
+ public final static String HTML_DOC = "html";
+ /**
+ * a GIF or an JPG file.
+ */
+ public final static String WEB_GRAPHICS = "graphics";
+ /**
+ * a PDF document.
+ */
+ public final static String PDF_DOC = "pdf";
+ /**
+ * a Sound file (mp3/wav ect.)
+ */
+ public final static String SOUND_FILE = "sound";
+
+
+ /**
+ * a File which can not be handled by neither SO or a Web browser (exe, jar, zip ect.)
+ */
+ public final static String NO_TYPE = "other";
+
+
+
+}