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

How to use
checkDao
method
in
net.sf.taverna.t2.reference.impl.ErrorDocumentServiceImpl

Best Java code snippets using net.sf.taverna.t2.reference.impl.ErrorDocumentServiceImpl.checkDao (Showing top 11 results out of 315)

origin: net.sf.taverna.t2.core/reference-impl

public void deleteErrorDocumentsForWorkflowRun(String workflowRunId)
    throws ReferenceServiceException {
  checkDao();
  errorDao.deleteErrorDocumentsForWFRun(workflowRunId);
}
origin: net.sf.taverna.t2.core/reference-impl

public ErrorDocument getError(T2Reference id)
    throws ErrorDocumentServiceException {
  checkDao();
  try {
    return errorDao.get(id);
  } catch (Throwable t) {
    throw new ErrorDocumentServiceException(t);
  }
}
origin: net.sf.taverna.t2/t2reference-impl

public ErrorDocument getError(T2Reference id)
    throws ErrorDocumentServiceException {
  checkDao();
  try {
    return errorDao.get(id);
  } catch (Throwable t) {
    throw new ErrorDocumentServiceException(t);
  }
}
origin: net.sf.taverna.t2.core/reference-impl

public boolean delete(T2Reference reference)
    throws ReferenceServiceException {
  checkDao();
  ErrorDocument doc = errorDao.get(reference);
  if (doc==null) return false;
  return errorDao.delete(doc);
}
origin: net.sf.taverna.t2/reference-impl

public ErrorDocument getError(T2Reference id)
    throws ErrorDocumentServiceException {
  checkDao();
  try {
    return errorDao.get(id);
  } catch (Throwable t) {
    throw new ErrorDocumentServiceException(t);
  }
}
origin: net.sf.taverna.t2/t2reference-impl

checkDao();
checkGenerator();
origin: net.sf.taverna.t2.core/reference-impl

checkDao();
checkGenerator();
origin: net.sf.taverna.t2/reference-impl

  ReferenceContext context) throws ErrorDocumentServiceException {
context = EmptyReferenceContext.checkContext(context);
checkDao();
checkGenerator();
origin: net.sf.taverna.t2.core/reference-impl

public ErrorDocument registerError(String message, Set<T2Reference> errors, int depth, ReferenceContext context) 
    throws ErrorDocumentServiceException {
  checkDao();
  checkGenerator();
origin: net.sf.taverna.t2/t2reference-impl

public ErrorDocument registerError(String message, Set<T2Reference> errors, int depth) 
    throws ErrorDocumentServiceException {
  checkDao();
  checkGenerator();
origin: net.sf.taverna.t2/reference-impl

public ErrorDocument registerError(String message, Set<T2Reference> errors,
    int depth, ReferenceContext context)
    throws ErrorDocumentServiceException {
  checkDao();
  checkGenerator();
  context = EmptyReferenceContext.checkContext(context);
net.sf.taverna.t2.reference.implErrorDocumentServiceImplcheckDao

Popular methods of ErrorDocumentServiceImpl

  • checkGenerator
  • <init>
  • getGenerator
  • setErrorDao
  • setT2ReferenceGenerator

Popular in Java

  • Updating database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Menu (java.awt)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • JFrame (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • CodeWhisperer 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