Home | History | Annotate | Download | only in net

Lines Matching defs:link

54      * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
102 // <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
103 // <link rel="edit" href="http://example.com/admin/article/1234"/>
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
131 String link = null;
145 } else if (name.equals("link")) {
146 // Example: <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
148 // Multiple link types can be included. readAlternateLink() will only return
149 // non-null when reading an "alternate"-type link. Ignore other responses.
152 link = tempLink;
163 return new Entry(id, title, link, publishedOn);
208 * Processes link tags in the feed.
212 String link = null;
213 parser.require(XmlPullParser.START_TAG, ns, "link");
217 link = parser.getAttributeValue(null, "href");
223 return link;
263 * <p>It includes the data members "title," "link," and "summary."
268 public final String link;
271 Entry(String id, String title, String link, long published) {
274 this.link = link;