Ignore:
Timestamp:
02/24/15 16:08:22 (9 years ago)
Author:
olhsha@mpi.nl
Message:

Javadoc annotations are revised for "eu.daish.annotation.backend" and "eu.daish.annotation.backend.dao" packages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/java/eu/dasish/annotation/backend/dao/CachedRepresentationDao.java

    r5998 r6042  
    3737     *
    3838     * @param internalID the internal database Id of the cached representation.
    39      * @return the object of the class "CachedRepresentationInfo" with the internal id "internalID".
     39     * @return a {@link CachedRepresentationInfo} object representing the metadata
     40     * of the cached representation with the internal id "internalID".
    4041     */
    4142    public CachedRepresentationInfo getCachedRepresentationInfo(Number internalID);
     
    4344    /**
    4445     *
    45      * @param internalID
     46     * @param internalID the internal database Id of a target.
    4647     * @return the Blob of the cached representation with the internal database id "internalID".
    4748     */
    4849    public InputStream getCachedRepresentationBlob(Number internalID);
    4950
    50     /*
    51      * @param targetID
    52      * @return the list of the cached representation's ID-s for the target the internal database ID "targetID".
     51    /**
     52     * @param targetID the internal database Id of a target.
     53     * @return the list of the cached representation's ID-s for the target with the internal database ID "targetID".
    5354     */
    5455    public List<Number> getCachedRepresentationsForTarget(Number targetID);
     
    5960    /**
    6061     *
    61      * @param cachedInfo the metadata of the cached representation (incl.the date of creation and mime-type.
     62     * @param cachedInfo a {@link CachedRepresentationInfo} object representing the metadata of a cached representation.
    6263     * @param cachedBlob the content of the cached representation, considered as BLOB.
    63      * @return the internal ID of the just added "cached", or throws the exception if adding fails.
     64     * @return the internal ID of the just added cached representation, or throws an exception if adding fails.
    6465     * @throws NotInDataBaseException if there is no object with the generated for the new cached representation external id.
    6566     * @throws IOException if reading blob fails.
     
    7475    /**
    7576     *
    76      * @param internalID the internal database id of the cached representation.
    77      * @param cachedInfo the new metadata for it.
     77     * @param internalID the internal database id of a cached representation.
     78     * @param cachedInfo new metadata for it.
    7879     * @return # of updated rows in the table "cached_representation". Must be 1 if updated, and 0 otherwise.
    7980     */
     
    8283    /**
    8384     *
    84      * @param internalID the internal database id of the cached representation.
     85     * @param internalID the internal database id of a cached representation.
    8586     * @param cachedBlob the new content considered as BLOB.
    8687     * @return # of updated rows in the table "cached_representation". Must be 1 if updated, and 0 otherwise.
     
    9495    /**
    9596     *
    96      * @param internalID the internal database id of the cached representation.
     97     * @param internalID the internal database id of a cached representation.
    9798     * @return # deleted rows on the table "cached_representation".
    9899     */
Note: See TracChangeset for help on using the changeset viewer.