Package marauroa.common.game.Definition

Examples of marauroa.common.game.Definition.DefinitionClass


    } else if ((def.getFlags() & Definition.HIDDEN) > 0) {
      visibility = "private";
    }

    // static?
    DefinitionClass defClass = def.getDefinitionClass();
    boolean staticFlag = (defClass == DefinitionClass.STATIC);

    // name
    String name = def.getName().replace("!", "").replace("#", "").replace("-", "_").replace("class", "clazz");
View Full Code Here

TOP

Related Classes of marauroa.common.game.Definition.DefinitionClass

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.