Changeset 1474
- Timestamp:
- 09/05/10 16:30:02 (21 months ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
bindings/cpp/NeXusFile.cpp (modified) (1 diff)
-
bindings/java/Makefile.am (modified) (5 diffs)
-
bindings/java/org/nexusformat/NexusFile.java (modified) (2 diffs)
-
bindings/python/nxs/napi.py (modified) (3 diffs)
-
doc/doxygen/Doxyfile_c (modified) (2 diffs)
-
doc/doxygen/Doxyfile_cpp (modified) (1 diff)
-
src/napi.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bindings/cpp/NeXusFile.cpp
r1473 r1474 33 33 * \endcode 34 34 * 35 * \example napi_test_cpp.cxx 36 * Test program for NeXus C++ Interface 35 * \sa napi_test_cpp.cxx 37 36 * 38 37 * For details of the C API see http://download.nexusformat.org/doxygen/html-c/ 38 * 39 */ 40 41 /** 42 * \example napi_test_cpp.cxx 43 * Test program for the NeXus C++ Interface. 44 * This illustrates calling most of the functions for reading and writing a file 45 * 39 46 */ 40 47 -
trunk/bindings/java/Makefile.am
r1443 r1474 77 77 ncsa/hdf/hdflib/ArrayDescriptor.class 78 78 79 clean-local:80 rm -rf apidoc81 79 82 80 noinst_JAVA = ncsa/hdf/hdflib/HDFArray.java \ … … 93 91 test/TestJapi.java 94 92 95 EXTRA_DIST = $(noinst_JAVA) README.JNEXUS COPYING.NCSA 93 EXTRA_DIST = $(noinst_JAVA) README.JNEXUS COPYING.NCSA 96 94 97 95 # specific targets … … 102 100 $(JAVAH) -jni -d native -classpath . org.nexusformat.NexusFile 103 101 104 jnexus.jar: $(jnexus_jar_CLASS) 102 jnexus.jar: $(jnexus_jar_CLASS) apidoc 105 103 $(JAR) cvf jnexus.jar $(jnexus_jar_CLASS) \ 106 104 ncsa/hdf/hdflib/ArrayDescriptor.class 107 105 108 #all: $(jnexus_jar_ARCHIVE) $(lib_LTLIBRARIES) javadoc109 110 javadoc: $(noinst_JAVA)111 test -d apidoc || mkdir apidoc112 $(JAVADOC) -d apidoc -windowtitle jnexus -doctitle jnexus -classpath . \113 -sourcepath $(srcdir) org.nexusformat ncsa.hdf.hdflib114 106 115 107 SUFFIXES = .java .class … … 118 110 $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $< 119 111 112 apidoc : $(noinst_JAVA) 113 test -d apidoc || mkdir apidoc 114 $(JAVADOC) -d apidoc -windowtitle jnexus -doctitle jnexus -classpath . \ 115 -sourcepath $(srcdir) org.nexusformat ncsa.hdf.hdflib 116 117 dist-hook : 118 if test -d $(srcdir)/apidoc; then \ 119 cp -r $(srcdir)/apidoc $(distdir); \ 120 fi 121 122 install-data-local : 123 $(mkinstalldirs) $(DESTDIR)$(nxjavadocdir) 124 if test -d $(srcdir)/apidoc; then \ 125 cp -r $(srcdir)/apidoc $(DESTDIR)$(nxjavadocdir); \ 126 find $(DESTDIR)$(nxjavadocdir)/apidoc -type f -exec chmod 0644 {} \; ;\ 127 find $(DESTDIR)$(nxjavadocdir)/apidoc -type d -exec chmod 0755 {} \; ;\ 128 fi 129 130 clean-local : 131 rm -rf apidoc 132 133 uninstall-local : 134 rm -fr $(DESTDIR)$(nxjavadocdir)/apidoc 135 136 # 120 137 # Windows import library for DLL 121 138 … … 136 153 endif 137 154 155 138 156 ## include $(top_srcdir)/build_rules.am -
trunk/bindings/java/org/nexusformat/NexusFile.java
r1473 r1474 11 11 * different calling standards between C and Java. 12 12 * 13 * @example TestJapi.java14 * Test program for Java API15 13 * 16 14 * @author Mark Koennecke, October 2000 … … 21 19 * 22 20 * added nxinitattrdir: Mark Koennecke, October 2009 21 * 22 * @see TestJapi.java 23 * 24 */ 25 26 /** 27 * @example TestJapi.java 28 * Test program for Java API. 29 * Illustrates using the #org.nexusformat package 23 30 */ 24 31 package org.nexusformat; -
trunk/bindings/python/nxs/napi.py
r1473 r1474 17 17 os.environ['NEXUSLIB'] - All 18 18 directory containing nxs.py - All 19 os.environ['NEXUSDIR']\ bin - Windows19 os.environ['NEXUSDIR']\\bin - Windows 20 20 os.environ['LD_LIBRARY_PATH'] - Unix 21 21 os.environ['DYLD_LIBRARY_PATH'] - Darwin … … 50 50 @endcode 51 51 52 See @ example nxstest.py for a more complete example.52 See @see nxstest.py for a more complete example. 53 53 54 54 Interface … … 125 125 126 126 """ 127 128 ## @example nxstest.py 129 # Test program for NeXus python interface 127 130 128 131 __all__ = ['UNLIMITED', 'MAXRANK', 'MAXNAMELEN','MAXPATHLEN','H4SKIP', -
trunk/doc/doxygen/Doxyfile_c
r1473 r1474 628 628 # the \include command). 629 629 630 EXAMPLE_PATH = 630 EXAMPLE_PATH = $(TOPSRC)/test 631 631 632 632 # If the value of the EXAMPLE_PATH tag contains directories, you can use the … … 635 635 # blank all files are included. 636 636 637 EXAMPLE_PATTERNS = 637 EXAMPLE_PATTERNS = *.c *.h 638 638 639 639 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -
trunk/doc/doxygen/Doxyfile_cpp
r1473 r1474 642 642 # blank all files are included. 643 643 644 EXAMPLE_PATTERNS = *.cpp *.cxx 644 EXAMPLE_PATTERNS = *.cpp *.cxx *.hpp 645 645 646 646 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -
trunk/src/napi.c
r1470 r1474 67 67 */ 68 68 69 /** 70 * \example napi_test.c 71 * This is the test program for the NeXus C API. 72 * It illustrates calling most functions to read and write a file. 73 */ 69 74 70 75
Note: See TracChangeset
for help on using the changeset viewer.
