Kaydet (Commit) 843ae281 authored tarafından Kurt Zenker's avatar Kurt Zenker

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
üst c5a6bf5a
/*
* 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";
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment