Package appeng.api.util

Examples of appeng.api.util.IConfigManager.writeToNBT()


    if ( this instanceof IConfigurableObject )
    {
      IConfigManager cm = ((IConfigurableObject) this).getConfigManager();
      if ( cm != null )
        cm.writeToNBT( output );
    }

    if ( this instanceof IPriorityHost )
    {
      IPriorityHost pHost = (IPriorityHost) this;
View Full Code Here


  {
    NBTTagCompound output = new NBTTagCompound();

    IConfigManager cm = this.getConfigManager();
    if ( cm != null )
      cm.writeToNBT( output );

    if ( this instanceof IPriorityHost )
    {
      IPriorityHost pHost = (IPriorityHost) this;
      output.setInteger( "priority", pHost.getPriority() );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.