Package forestry.mail

Examples of forestry.mail.MailAddress


  @EntityNetData
  private MailAddress address;

  public MachineTrader() {
    address = new MailAddress();
  }
View Full Code Here


      if (!PostManager.postRegistry.isAvailableTradeAddress(worldObj, address)) {
        setErrorState(EnumErrorCode.NOTUNIQUE);
        return;
      }

      this.address = new MailAddress(address);
      PostManager.postRegistry.getOrCreateTradeStation(worldObj, getOwnerProfile(), address);
      setErrorState(EnumErrorCode.OK);
    } else
      this.address = new MailAddress(address);
  }
View Full Code Here

TOP

Related Classes of forestry.mail.MailAddress

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.