01: package org.apache.ojb.broker;
02:
03: /**
04: * This interface is used to test extent aware path expressions
05: * @author <a href="leandro@ibnetwork.com.br">Leandro Rodrigo Saad Cruz</a>
06: */
07: public class News extends BaseContentImpl {
08:
09: public News() {
10: super ();
11: }
12:
13: /**
14: * @param i
15: */
16: public News(int id) {
17: super (id);
18: }
19:
20: /**
21: *
22: */
23: private String headline;
24:
25: /**
26: * @return
27: */
28: public String getHeadline() {
29: return headline;
30: }
31:
32: /**
33: * @param string
34: */
35: public void setHeadline(String headline) {
36: this.headline = headline;
37: }
38:
39: }
|