Package org.rsbot.script

Examples of org.rsbot.script.ScriptManifest.authors()


    if (clazz.isAnnotationPresent(ScriptManifest.class)) {
      final FileScriptDefinition def = new FileScriptDefinition();
      final ScriptManifest manifest = clazz.getAnnotation(ScriptManifest.class);
      def.id = 0;
      def.name = manifest.name();
      def.authors = manifest.authors();
      def.version = manifest.version();
      def.keywords = manifest.keywords();
      def.description = manifest.description();
      def.website = manifest.website();
      def.clazz = clazz;
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.