Tabnine Logo
ContinuumProjectBuildingResult.getErrors
Code IndexAdd Tabnine to your IDE (free)

How to use
getErrors
method
in
org.apache.maven.continuum.project.builder.ContinuumProjectBuildingResult

Best Java code snippets using org.apache.maven.continuum.project.builder.ContinuumProjectBuildingResult.getErrors (Showing top 6 results out of 315)

origin: org.apache.maven.continuum/continuum-api

/**
 * Get the warnings that happened during adding the project to Continuum.
 * There is an entry with the warning key (so it can be internationalized later) for each warning.
 *
 * @return {@link List} < {@link String} >
 * @deprecated Use {@link #getErrors()} instead
 */
public List getWarnings()
{
  return getErrors();
}
origin: org.apache.continuum/continuum-xmlrpc-server

for ( String error : result.getErrors() )
origin: org.apache.continuum/continuum-core

log.info( result.getErrors().size() + " errors." );
  log.info( result.getErrors().size() + " errors during project add: " );
  log.info( result.getErrorsAsString() );
  return result;
  log.info( result.getErrors().size() + " errors during project add: " );
  log.info( result.getErrorsAsString() );
  return result;
origin: org.apache.continuum/continuum-api

/**
 * Get the warnings that happened during adding the project to Continuum.
 * There is an entry with the warning key (so it can be internationalized later) for each warning.
 *
 * @return {@link List} < {@link String} >
 * @deprecated Use {@link #getErrors()} instead
 */
public List<String> getWarnings()
{
  return getErrors();
}
origin: org.apache.maven.continuum/continuum-xmlrpc-server

for ( Iterator i = result.getErrors().iterator(); i.hasNext(); )
origin: org.apache.maven.continuum/continuum-core

getLogger().info( result.getErrors().size() + " errors." );
  getLogger().info( result.getErrors().size() + " errors during project add: " );
  for ( Iterator i = result.getErrors().iterator(); i.hasNext(); )
org.apache.maven.continuum.project.builderContinuumProjectBuildingResultgetErrors

Javadoc

Get the errors that happened during adding the project to Continuum. There is an entry with the error key (so it can be internationalized later) for each error.

Popular methods of ContinuumProjectBuildingResult

  • hasErrors
    Quick check to see if there are any errors.
  • addError
    Add an error that happened during adding the project to Continuum.
  • getErrorsAsString
    Returns a string representation of the errors.
  • getProjectGroups
  • getProjects
  • <init>
  • addProject
  • addProjectGroup
  • getRootProject
  • setRootProject

Popular in Java

  • Making http post requests using okhttp
  • getExternalFilesDir (Context)
  • getApplicationContext (Context)
  • requestLocationUpdates (LocationManager)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Top 12 Jupyter Notebook extensions
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