Create AiMetadataEntry.java for jassimp port.
authorDoug Stephen <dstephen@ihmc.us>
Wed, 11 Oct 2017 15:54:27 +0000 (10:54 -0500)
committerDoug Stephen <dstephen@ihmc.us>
Wed, 11 Oct 2017 15:54:27 +0000 (10:54 -0500)
port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java [new file with mode: 0644]

diff --git a/port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java b/port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java
new file mode 100644 (file)
index 0000000..3dd983b
--- /dev/null
@@ -0,0 +1,35 @@
+package jassimp;
+
+/**
+ * @author Doug Stephen <a href="mailto:dstephen@ihmc.us">(dstephen@ihmc.us)</a>
+ */
+public class AiMetadataEntry
+{
+   public enum AiMetadataType
+   {
+      AI_BOOL, AI_INT32, AI_UINT64, AI_FLOAT, AI_DOUBLE, AI_AISTRING, AI_AIVECTOR3D
+   }
+
+   private AiMetadataType mType;
+   private Object mData;
+
+   public AiMetadataType getMetaDataType()
+   {
+      return mType;
+   }
+
+//   public void setMetaDataType(AiMetadataType type)
+//   {
+//      this.mType = type;
+//   }
+
+   public Object getData()
+   {
+      return mData;
+   }
+
+//   public void setData(Object data)
+//   {
+//      this.mData = data;
+//   }
+}