Package com.ardublock.translator.block.exception

Examples of com.ardublock.translator.block.exception.SubroutineNotDeclaredException


  public String toCode() throws SocketNullException, SubroutineNotDeclaredException
  {
    String subroutineName = label.trim();
    if (!translator.containFunctionName(subroutineName))
    {
      throw new SubroutineNotDeclaredException(blockId);
    }
    return "\t"+subroutineName + "();\n";
  }
View Full Code Here

TOP

Related Classes of com.ardublock.translator.block.exception.SubroutineNotDeclaredException

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.