Create AiMetadataEntry.java for jassimp port.

pull/1499/head
Doug Stephen 2017-10-11 10:54:27 -05:00
parent 3964f5cf43
commit 3ef1f37a80
1 changed files with 35 additions and 0 deletions

View File

@ -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;
// }
}