com.jme3.asset
クラス AssetInfo

java.lang.Object
  上位を拡張 com.jme3.asset.AssetInfo

public abstract class AssetInfo
extends java.lang.Object

The result of locating an asset through an AssetKey. Provides a means to read the asset data through an InputStream.


コンストラクタの概要
AssetInfo(AssetManager manager, AssetKey key)
           
 
メソッドの概要
 AssetKey getKey()
           
 AssetManager getManager()
           
abstract  java.io.InputStream openStream()
          Implementations of this method should return an InputStream allowing access to the data represented by the AssetKey.
 java.lang.String toString()
           
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

AssetInfo

public AssetInfo(AssetManager manager,
                 AssetKey key)
メソッドの詳細

getKey

public AssetKey getKey()

getManager

public AssetManager getManager()

toString

public java.lang.String toString()
オーバーライド:
クラス java.lang.Object 内の toString

openStream

public abstract java.io.InputStream openStream()
Implementations of this method should return an InputStream allowing access to the data represented by the AssetKey.

戻り値:
The asset data.