Java Code Examples for io.flutter.plugin.common.PluginRegistry#hasPlugin()

The following examples show how to use io.flutter.plugin.common.PluginRegistry#hasPlugin() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GeneratedPluginRegistrant.java    From simple_share with MIT License 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
  final String key = GeneratedPluginRegistrant.class.getCanonicalName();
  if (registry.hasPlugin(key)) {
    return true;
  }
  registry.registrarFor(key);
  return false;
}
 
Example 2
Source File: GeneratedPluginRegistrant.java    From simple_share with MIT License 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
  final String key = GeneratedPluginRegistrant.class.getCanonicalName();
  if (registry.hasPlugin(key)) {
    return true;
  }
  registry.registrarFor(key);
  return false;
}
 
Example 3
Source File: GeneratedPluginRegistrant.java    From WiFiFlutter with MIT License 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
  final String key = GeneratedPluginRegistrant.class.getCanonicalName();
  if (registry.hasPlugin(key)) {
    return true;
  }
  registry.registrarFor(key);
  return false;
}
 
Example 4
Source File: GeneratedPluginRegistrant.java    From CrazyDaily with Apache License 2.0 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
    final String key = GeneratedPluginRegistrant.class.getCanonicalName();
    if (registry.hasPlugin(key)) {
        return true;
    }
    registry.registrarFor(key);
    return false;
}
 
Example 5
Source File: GeneratedPluginRegistrant.java    From o2oa with GNU Affero General Public License v3.0 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
  final String key = GeneratedPluginRegistrant.class.getCanonicalName();
  if (registry.hasPlugin(key)) {
    return true;
  }
  registry.registrarFor(key);
  return false;
}
 
Example 6
Source File: GeneratedPluginRegistrant.java    From test-samples with Apache License 2.0 5 votes vote down vote up
private static boolean alreadyRegisteredWith(PluginRegistry registry) {
  final String key = GeneratedPluginRegistrant.class.getCanonicalName();
  if (registry.hasPlugin(key)) {
    return true;
  }
  registry.registrarFor(key);
  return false;
}