congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ApplicationPlugin
Code IndexAdd Tabnine to your IDE (free)

How to use
ApplicationPlugin
in
com.atlassian.application.api

Best Java code snippets using com.atlassian.application.api.ApplicationPlugin (Showing top 1 results out of 315)

origin: com.atlassian.application/atlassian-application-host

@Override
public DateTime buildDate()
{
  //We have to do this lazily because you can't read the OSGi header while the plugin is being inited.
  if (buildDate == null)
  {
    final Plugin plugin = this.plugin.get();
    if (plugin == null)
    {
      throw new IllegalStateException("Plugin '" + getPrimaryPlugin().getPluginKey()
        + "' no longer exists.");
    }
    buildDate = new AmpsBuildDateParser().apply(plugin).getOrElse(new DateTime(0));
  }
  return buildDate;
}
com.atlassian.application.apiApplicationPlugin

Javadoc

Representation of a plugin in an Application.

Most used methods

  • getPluginKey
    The key of the plugin.

Popular in Java

  • Updating database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • getSystemService (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now