Ignore:
Timestamp:
Sep 26, 2012, 12:56:42 PM (12 years ago)
Author:
casties
Branch:
default
Message:

saving and loading resource targets should work now (no searching yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/de/mpiwg/itgroup/annotations/Annotation.java

    r20 r40  
    3939   
    4040    /**
    41      * The types of annotation targets.
     41     * The types of annotation target fragments.
    4242     *
    4343     */
     
    5050     */
    5151    protected FragmentTypes fragmentType;
     52   
     53   
     54    /**
     55     * The uri of the resource that is annotated e.g. a book.
     56     * The target is part of this resource e.g. a page of a book.
     57     */
     58    protected String resourceUri;
    5259   
    5360    /**
     
    224231
    225232    /**
     233     * @return the resourceUri
     234     */
     235    public String getResourceUri() {
     236        return resourceUri;
     237    }
     238
     239    /**
     240     * @param resourceUri the resourceUri to set
     241     */
     242    public void setResourceUri(String resourceUri) {
     243        this.resourceUri = resourceUri;
     244    }
     245
     246    /**
    226247     * @return the creator
    227248     */
Note: See TracChangeset for help on using the changeset viewer.