Package net.sourceforge.torchlight.core.data.creature

Examples of net.sourceforge.torchlight.core.data.creature.CreatureData


        return ImageLoader.getImageDescriptor(IApplicationConstants.class, IApplicationConstants.CREATURE_ICON_PATH);
    }

    public String getName()
    {
        CreatureData datum = creature.getDatum("name");
        if(datum != null)
        {
            return datum.getValue();
        }
       
        return "";
    }
View Full Code Here


        return null;
    }

    public String getToolTipText()
    {
        CreatureData datum = creature.getDatum("name");
        if(datum != null)
        {
            return res.getLocaleString("creature.data.editor.creature.tooltip") + ": " + datum.getValue();
        }
       
        return res.getLocaleString("creature.data.editor.creature.tooltip");
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.torchlight.core.data.creature.CreatureData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.