Package org.sonar.api

Examples of org.sonar.api.SonarPlugin


  PluginMetadata metadata = mock(PluginMetadata.class);

  Map<PluginMetadata, Plugin> newPlugin(final Object... extensions) {
    Map<PluginMetadata, Plugin> result = Maps.newHashMap();
    result.put(metadata,
      new SonarPlugin() {
        public List getExtensions() {
          return Arrays.asList(extensions);
        }
      }
      );
View Full Code Here

TOP

Related Classes of org.sonar.api.SonarPlugin

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.