Tabnine Logo
UIMAFramework.getVersionString
Code IndexAdd Tabnine to your IDE (free)

How to use
getVersionString
method
in
org.apache.uima.UIMAFramework

Best Java code snippets using org.apache.uima.UIMAFramework.getVersionString (Showing top 4 results out of 315)

origin: apache/uima-uimaj

public static String getVersion() {
 return UIMAFramework.getVersionString();
}
origin: org.apache.uima/uimaj-tools

 @Override
 public void actionPerformed(ActionEvent e) {
  String javaVersion = System.getProperty("java.version");
  String javaVendor = System.getProperty("java.vendor");
  javaVendor = (javaVendor == null) ? "<Unknown>" : javaVendor;
  String versionInfo = null;
  if (javaVersion == null) {
   versionInfo = "Running on an old version of Java";
  } else {
   versionInfo = "Running Java " + javaVersion + " from " + javaVendor;
  }
  String msg = "CVD (CAS Visual Debugger)\n" + "Apache UIMA Version "
    + UIMAFramework.getVersionString() 
    + " Copyright 2006, " + UimaVersion.getBuildYear() + " The Apache Software Foundation\n" + versionInfo + "\n";
  Icon icon = Images.getImageIcon(Images.UIMA_LOGO_SMALL);
  if (icon == null) {
   JOptionPane.showMessageDialog(this.main, msg, "About CVD",
     JOptionPane.INFORMATION_MESSAGE);
  } else {
   JOptionPane.showMessageDialog(this.main, msg, "About CVD",
     JOptionPane.INFORMATION_MESSAGE, icon);
  }
 }
}
origin: org.apache.uima/uimaj-tools

getContentPane().add(imagePanel, BorderLayout.WEST);
String aboutText = ABOUT_TEXT.replaceAll("\\$\\{version\\}", UIMAFramework.getVersionString());
origin: org.apache.uima/uimaj-as-core

platformInfo.append("\n+ Service Start Time:" + df.format(bean.getStartTime()));
platformInfo.append("\n+ UIMA AS Version:" + uimaAsVersion.getVersionString());
platformInfo.append("\n+ UIMA Core Version:" + UIMAFramework.getVersionString());
if ( System.getenv(JMS_PROVIDER_HOME) != null) {
 platformInfo.append("\n+ JMS Provider Home:" + System.getenv(JMS_PROVIDER_HOME));
org.apache.uimaUIMAFrameworkgetVersionString

Javadoc

Gets the framework implementation's version number as a string. This will be the major version number, minor version number, and build revision in that order, separated by dots.

Popular methods of UIMAFramework

  • getXMLParser
  • produceAnalysisEngine
  • newDefaultResourceManager
  • getLogger
  • getResourceSpecifierFactory
  • newConfigurationManager
  • newUimaContext
  • produceCollectionReader
  • produceCollectionProcessingEngine
    Produces a CollectionProcessingEngine instance from a cpeDescription.
  • getDefaultPerformanceTuningProperties
  • produceCasConsumer
  • produceResource
  • produceCasConsumer,
  • produceResource,
  • _getBuildRevision,
  • _getDefaultPerformanceTuningProperties,
  • _getLogger,
  • _getMajorVersion,
  • _getMinorVersion,
  • _getResourceFactory,
  • _getResourceSpecifierFactory

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setScale (BigDecimal)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JTextField (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Top plugins for WebStorm
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