Ignore:
Timestamp:
Sep 4, 2012, 6:02:59 PM (12 years ago)
Author:
casties
Branch:
default
Message:

CLOSED - # 252: Tags for Annotations
https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-software/ticket/252

File:
1 edited

Legend:

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

    r15 r16  
    33 */
    44package de.mpiwg.itgroup.annotations;
     5
     6import java.util.List;
     7import java.util.Set;
    58
    69import de.mpiwg.itgroup.annotations.neo4j.AnnotationStore;
     
    8285     */
    8386    protected Actor readPermission;
    84    
     87       
     88    /**
     89     * List of tags on this Annotation.
     90     */
     91    protected Set<String> tags;
    8592   
    8693    /**
     
    318325        this.readPermission = readPermission;
    319326    }
     327
     328    /**
     329     * @return the tags
     330     */
     331    public Set<String> getTags() {
     332        return tags;
     333    }
     334
     335    /**
     336     * @param tags the tags to set
     337     */
     338    public void setTags(Set<String> tags) {
     339        this.tags = tags;
     340    }
    320341   
    321342   
Note: See TracChangeset for help on using the changeset viewer.