summaryrefslogtreecommitdiffstats
path: root/Source/cmVTKWrapJavaCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-05-03 19:28:06 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-05-03 19:28:06 (GMT)
commit79f95167bd6b370a0f776010e554ddb9f1e21bb3 (patch)
tree7679fffb562832d03a1797f77f991a0ecfbd90cb /Source/cmVTKWrapJavaCommand.h
parent34a60cdcc92aff996f2521dfe2569acc0dda3c25 (diff)
downloadCMake-79f95167bd6b370a0f776010e554ddb9f1e21bb3.zip
CMake-79f95167bd6b370a0f776010e554ddb9f1e21bb3.tar.gz
CMake-79f95167bd6b370a0f776010e554ddb9f1e21bb3.tar.bz2
minor fixes
Diffstat (limited to 'Source/cmVTKWrapJavaCommand.h')
-rw-r--r--Source/cmVTKWrapJavaCommand.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/Source/cmVTKWrapJavaCommand.h b/Source/cmVTKWrapJavaCommand.h
new file mode 100644
index 0000000..25c97fc
--- /dev/null
+++ b/Source/cmVTKWrapJavaCommand.h
@@ -0,0 +1,76 @@
+#ifndef cmVTKWrapJavaCommand_h
+#define cmVTKWrapJavaCommand_h
+
+#include "cmStandardIncludes.h"
+#include "cmCommand.h"
+
+/** \class cmVTKWrapJavaCommand
+ * \brief Create Java Language bindings for classes
+ *
+ * cmVTKWrapJavaCommand is used to create wrappers for classes into Java
+ */
+class cmVTKWrapJavaCommand : public cmCommand
+{
+public:
+ /**
+ * This is a virtual constructor for the command.
+ */
+ virtual cmCommand* Clone()
+ {
+ return new cmVTKWrapJavaCommand;
+ }
+
+ /**
+ * This is called when the command is first encountered in
+ * the CMakeLists.txt file.
+ */
+ virtual bool Invoke(std::vector<std::string>& args);
+
+ /**
+ * This is called at the end after all the information
+ * specified by the command is accumulated. Most commands do
+ * not implement this method. At this point, reading and
+ * writing to the cache can be done.
+ */
+ virtual void FinalPass();
+
+ /**
+ * This determines if the command gets propagated down
+ * to makefiles located in subdirectories.
+ */
+ virtual bool IsInherited()
+ {return true;}
+
+ /**
+ * The name of the command as specified in CMakeList.txt.
+ */
+ virtual const char* GetName() { return "VTK_WRAP_JAVA";}
+
+ /**
+ * Succinct documentation.
+ */
+ virtual const char* GetTerseDocumentation()
+ {
+ return "Create Java Wrappers.";
+ }
+
+ /**
+ * More documentation.
+ */
+ virtual const char* GetFullDocumentation()
+ {
+ return
+ "VTK_WRAP_JAVA(resultingLibraryName SourceListName SourceLists ...)";
+ }
+
+private:
+ std::vector<cmSourceFile> m_WrapClasses;
+ std::vector<std::string> m_WrapHeaders;
+ std::vector<std::string> m_OriginalNames;
+ std::string m_LibraryName;
+ std::string m_SourceList;
+};
+
+
+
+#endif