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

How to use
get
method
in
net.sf.taverna.t2.reference.ErrorDocumentDao

Best Java code snippets using net.sf.taverna.t2.reference.ErrorDocumentDao.get (Showing top 7 results out of 315)

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.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/reference-impl

  public void run() {
    try {
      ErrorDocument e = errorDao.get(id);
      callback.errorRetrieved(e);
    } catch (DaoException de) {
      callback
          .errorRetrievalFailed(new ErrorDocumentServiceException(
              de));
    }
  }
};
origin: net.sf.taverna.t2.core/reference-impl

  public void run() {
    try {
      ErrorDocument e = errorDao.get(id);
      callback.errorRetrieved(e);
    } catch (DaoException de) {
      callback
          .errorRetrievalFailed(new ErrorDocumentServiceException(
              de));
    }
  }
};
origin: net.sf.taverna.t2/t2reference-impl

  public void run() {
    try {
      ErrorDocument e = errorDao.get(id);
      callback.errorRetrieved(e);
    } catch (DaoException de) {
      callback
          .errorRetrievalFailed(new ErrorDocumentServiceException(
              de));
    }
  }
};
net.sf.taverna.t2.referenceErrorDocumentDaoget

Javadoc

Retrieves a named and populated ErrorDocument

Popular methods of ErrorDocumentDao

  • store
    Store a named ErrorDocument to the database.
  • delete
  • deleteErrorDocumentsForWFRun

Popular in Java

  • Making http post requests using okhttp
  • getContentResolver (Context)
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top PhpStorm plugins
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