1 package org.openrdf.concepts.awol;
2
3 import org.openrdf.elmo.annotations.rdf;
4
5 public interface FeedOrEntryOrLink {
6
7
8 /** See §4.2.14. Title of a container */
9 @rdf("http://bblfish.net/work/atom-owl/2006-06-06/#title")
10 public abstract TextContent getAwolTitle();
11
12 /** See §4.2.14. Title of a container */
13 public abstract void setAwolTitle(TextContent value);
14
15 }