summaryrefslogtreecommitdiff
path: root/src/com/google/wireless/gdata2/data/Entry.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/google/wireless/gdata2/data/Entry.java')
-rw-r--r--src/com/google/wireless/gdata2/data/Entry.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/com/google/wireless/gdata2/data/Entry.java b/src/com/google/wireless/gdata2/data/Entry.java
index 266ff29..a1a73a4 100644
--- a/src/com/google/wireless/gdata2/data/Entry.java
+++ b/src/com/google/wireless/gdata2/data/Entry.java
@@ -6,10 +6,16 @@ import com.google.wireless.gdata2.data.batch.BatchInfo;
import com.google.wireless.gdata2.parser.ParseException;
/**
- * Entry in a GData feed.
+ * Entry in a GData feed. This is the rough equivalent of the atom:Entry
+ * element. The "atom:entry" element represents an individual entry,
+ * acting as a container for metadata and data associated with the
+ * entry. This element can appear as a child of the atom:feed element,
+ * or it can appear as the document (i.e., top-level) element of a
+ * standalone Atom Entry Document.
+ * The Entry class serves as a base class for Google service specific subclasses,
+ * like a contact or a calendar event. As a base class it takes care of the default
+ * attributes and elements that are common to all entries.
*/
-// allow for writing directly into data structures used by native PIM, etc.,
-// APIs.
public class Entry {
private String id = null;
private String title = null;