Package com.bergerkiller.bukkit.common.reflection

Examples of com.bergerkiller.bukkit.common.reflection.ClassTemplate


    this.commonConstructor = this.commonType.getConstructor(entityClass);

    // Obtain NMS class type and constructor
    type = CommonUtil.getClass(Common.NMS_ROOT + ".Entity" + nmsName);
    if (type == null) {
      this.nmsType = new ClassTemplate();
      this.nmsConstructor = null;
    } else {
      this.nmsType = ClassTemplate.create(type);
      if (entityType == EntityType.PLAYER) {
        this.nmsConstructor = null;
View Full Code Here

TOP

Related Classes of com.bergerkiller.bukkit.common.reflection.ClassTemplate

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.