Package de.justi.yagw2api.analyzer

Examples of de.justi.yagw2api.analyzer.IWorldEntity


  @Override
  public boolean equals(Object obj) {
    if ((obj == null) || !(obj instanceof IWorldEntity)) {
      return false;
    } else {
      final IWorldEntity worldEntity = (IWorldEntity) obj;
      return Objects.equal(this.originWorldId, worldEntity.getOriginWorldId().orNull());
    }
  }
View Full Code Here

TOP

Related Classes of de.justi.yagw2api.analyzer.IWorldEntity

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.