app/src/main/java/org/apache/taverna/mobile/data/model/Announcement.java [29:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Attribute(name = "resource", required = false)
    String resource;

    @Attribute(name = "uri", required = false)
    String uri;

    @Attribute(name = "id", required = false)
    String id;

    @Text
    String content;

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



app/src/main/java/org/apache/taverna/mobile/data/model/Tag.java [31:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Attribute(name = "resource", required = false)
    String resource;

    @Attribute(name = "uri", required = false)
    String uri;

    @Attribute(name = "id", required = false)
    String id;

    @Text
    String content;

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



