From: Doug Stephen Date: Wed, 11 Oct 2017 15:54:27 +0000 (-0500) Subject: Create AiMetadataEntry.java for jassimp port. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ef1f37a809ee7876d1faee0262d0b72ae7f8315;p=platform%2Fupstream%2Fassimp.git Create AiMetadataEntry.java for jassimp port. --- diff --git a/port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java b/port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java new file mode 100644 index 0000000..3dd983b --- /dev/null +++ b/port/jassimp/jassimp/src/jassimp/AiMetadataEntry.java @@ -0,0 +1,35 @@ +package jassimp; + +/** + * @author Doug Stephen (dstephen@ihmc.us) + */ +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; +// } +}