summaryrefslogtreecommitdiff
path: root/odk/examples/java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-04-17 08:45:26 +0000
committerRüdiger Timm <rt@openoffice.org>2003-04-17 08:45:26 +0000
commit9765e97d833c85bd15ac775472d74fade198b432 (patch)
treecc3e92555601b01857b3213a2c24bb566f4ab530 /odk/examples/java
parentc0e18c92ebcdf80eca2163fa9e1d80e4da5490eb (diff)
INTEGRATION: CWS sdk01 (1.1.2); FILE ADDED
2003/04/11 13:42:28 jsc 1.1.2.3: #108153# remove brackets 2003/03/13 09:01:35 jsc 1.1.2.2: #107919# insert link to filter list 2003/03/12 13:55:23 jsc 1.1.2.1: #108153# moved from DocumentConverter/Loader/Printer/Saver directory
Diffstat (limited to 'odk/examples/java')
-rw-r--r--odk/examples/java/DocumentHandling/Makefile92
1 files changed, 92 insertions, 0 deletions
diff --git a/odk/examples/java/DocumentHandling/Makefile b/odk/examples/java/DocumentHandling/Makefile
new file mode 100644
index 000000000000..ea6c25acb9d8
--- /dev/null
+++ b/odk/examples/java/DocumentHandling/Makefile
@@ -0,0 +1,92 @@
+# Builds the Java DocumentHandling examples of the SDK.
+
+PRJ=../../..
+SETTINGS=$(PRJ)/settings
+
+include $(SETTINGS)/settings.mk
+include $(SETTINGS)/std.mk
+include $(SETTINGS)/dk.mk
+
+# Define non-platform/compiler specific settings
+COMPONENT_NAME=DocumentHandlingExamples
+OUT_COMP_CLASS = $(OUT_CLASS)/$(COMPONENT_NAME)
+
+JAVAFILES = \
+ DocumentConverter.java \
+ DocumentLoader.java \
+ DocumentPrinter.java \
+ DocumentSaver.java
+
+CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
+
+SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(OFFICE_CLASSES_DIR)/jurt.jar\
+ $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/unoil.jar\
+ $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/ridl.jar\
+ $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/sandbox.jar\
+ $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/juh.jar\
+ $(PATH_SEPARATOR)$(OUT_COMP_CLASS))
+
+
+# Targets
+.PHONY: ALL
+ALL : \
+ JavaDocumentHandlingExamples
+
+include $(SETTINGS)/stdtarget.mk
+
+$(OUT_COMP_CLASS) : $(OUT)
+ $(MKDIR) $(subst /,$(PS),$@)
+
+$(CLASSFILES) : $(OUT_COMP_CLASS) $(JAVAFILES)
+ javac -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
+
+JavaDocumentHandlingExamples : $(CLASSFILES)
+ @echo --------------------------------------------------------------------------------
+ @echo The DocumentConverter search the "$(QM)./test$(QM)" directory for documents, convert
+ @echo them using using the "$(QM)MS Word 97$(QM)" filter and the extension "$(QM).doc$(QM)".
+ @echo The list of possible filter names can changed but a normally uptodate list can be found
+ @echo on "$(QM)http://www.openoffice.org/files/documents/25/111/filter_description.html$(QM)".
+ @echo -
+ @echo The DocumentLoader loads the document "$(QM)./test/test1.sxw$(QM)".
+ @echo -
+ @echo The DocumentPrinter prints the document "$(QM)./test/test1.sxw$(QM)" using the
+ @echo the specified printer. If the printer is unknown the defualt printer is used.
+ @echo -
+ @echo The DocumentSaver loads the document "$(QM)./test/test1.sxw$(QM)" and save it
+ @echo under "$(QM)./test/testsave.sxw$(QM)".
+ @echo -
+ @echo Please use one of the following commands to execute the examples!
+ @echo -
+ @echo make DocumentConverter.run
+ @echo make DocumentLoader.run
+ @echo make DocumentPrinter.run
+ @echo make DocumentSaver.run
+ @echo --------
+ @echo The examples need parameters. Please use one the following commands to
+ @echo start the demo if you do not want the default parameters specified in the
+ @echo this makefile. Starting without parameters print a command line help:
+ @echo --- DocumentConverter ---
+ @echo java -classpath "$(QM)$(SDK_CLASSPATH)$(QM)" DocumentConverter "$(QM)directory$(QM)" "$(QM)filter name$(QM)" "$(QM)extension$(QM)"
+ @echo --- DocumentLoader ---
+ @echo java -classpath "$(QM)$(SDK_CLASSPATH)$(QM)" DocumentLoader "$(QM)Url|path$(QM)"
+ @echo --- DocumentPrinter ---
+ @echo java -classpath "$(QM)$(SDK_CLASSPATH)$(QM)" DocumentPrinter "$(QM)printername$(QM)" "$(QM)filename$(QM)" "$(QM)pages$(QM)"
+ @echo --- DocumentSaver ---
+ @echo java -classpath "$(QM)$(SDK_CLASSPATH)$(QM)" DocumentSaver "$(QM)load Url|path$(QM)" "$(QM)save Url|path$(QM)"
+ @echo --------------------------------------------------------------------------------
+
+DocumentConverter.run: $(OUT_COMP_CLASS)/DocumentConverter.class
+ java -classpath "$(SDK_CLASSPATH)" $(basename $@) "./test" "MS Word 97" "doc"
+
+DocumentLoader.run: $(OUT_COMP_CLASS)/DocumentLoader.class
+ java -classpath "$(SDK_CLASSPATH)" $(basename $@) "./test/test1.sxw"
+
+DocumentPrinter.run: $(OUT_COMP_CLASS)/DocumentPrinter.class
+ java -classpath "$(SDK_CLASSPATH)" $(basename $@) "my_printer" "./test/test1.sxw" 1
+
+DocumentSaver.run: $(OUT_COMP_CLASS)/DocumentSaver.class
+ java -classpath "$(SDK_CLASSPATH)" $(basename $@) "./test/test1.sxw" "./test/testsave.sxw"
+
+.PHONY: clean
+clean :
+ -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))