All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backendless.Platform Maven / Gradle / Ivy

package com.backendless;

/**
 * This class is used by the CodeRunner during initialization process.
 * It set isCodeRunner field to true.
 */
class Platform
{
  private static boolean isAndroid = false;
  private static boolean isCodeRunner = false;

  static boolean isAndroid()
  {
    return isAndroid;
  }

  static boolean isCodeRunner()
  {
    return isCodeRunner;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy