01: /*
02: * Copyright 2004 Sun Microsystems, Inc.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: *
16: */
17: package com.sun.syndication.feed.synd;
18:
19: import com.sun.syndication.feed.CopyFrom;
20:
21: /**
22: * Bean interface for content of SyndFeedImpl entries.
23: * <p>
24: * @author Alejandro Abdelnur
25: *
26: */
27: public interface SyndContent extends Cloneable, CopyFrom {
28: /**
29: * Returns the content type.
30: * <p>
31: * When used for the description of an entry, if <b>null</b> 'text/plain' must be assumed.
32: * <p>
33: * @return the content type, <b>null</b> if none.
34: *
35: */
36: String getType();
37:
38: /**
39: * Sets the content type.
40: * <p>
41: * When used for the description of an entry, if <b>null</b> 'text/plain' must be assumed.
42: * <p>
43: * @param type the content type to set, <b>null</b> if none.
44: *
45: */
46: void setType(String type);
47:
48: /**
49: * Sets the content mode (needed for Atom 0.3 support).
50: * @param type the content type to set, <b>null</b> if none.
51: *
52: */
53: String getMode();
54:
55: /**
56: * Sets the content mode (needed for Atom 0.3 support).
57: * @param type the content type to set, <b>null</b> if none.
58: *
59: */
60: void setMode(String mode);
61:
62: /**
63: * Returns the content value.
64: * <p>
65: * @return the content value, <b>null</b> if none.
66: *
67: */
68: String getValue();
69:
70: /**
71: * Sets the content value.
72: * <p>
73: * @param value the content value to set, <b>null</b> if none.
74: *
75: */
76: void setValue(String value);
77:
78: /**
79: * Creates a deep clone of the object.
80: * <p>
81: * @return a clone of the object.
82: * @throws CloneNotSupportedException thrown if an element of the object cannot be cloned.
83: *
84: */
85: public Object clone() throws CloneNotSupportedException;
86:
87: }
|