Lines Matching refs:user

29  * Logic for parsing a text message typed by the user looking for smileys,
66 /** Music note that indicates user is listening to a music track. */
433 // We will assume the user meant HTTP. (One weird case is where they
960 private String user;
964 public Photo(String user, String album, String photo, String text) {
966 this.user = user;
971 public String getUser() { return user; }
1000 /** Returns the URL for the RSS description of the user's albums. */
1001 public static String getRssUrl(String user) {
1002 return "http://picasaweb.google.com/data/feed/api/user/" + user +
1007 public static String getAlbumURL(String user, String album) {
1008 return "http://picasaweb.google.com/" + user + "/" + album;
1012 public static String getPhotoURL(String user, String album, String photo) {
1013 return "http://picasaweb.google.com/" + user + "/" + album + "/photo#"
1020 /** Pattern for a user album or photo URL. */
1030 private String user;
1031 private String photo; // null for user album
1035 public FlickrPhoto(String user, String photo, String grouping,
1039 /* System wide tags look like the URL to a Flickr user. */
1040 if (!TAGS.equals(user)) {
1041 this.user = user;
1047 this.user = null;
1054 public String getUser() { return user; }
1064 * user.
1092 return getUserSetsURL(user, groupingId);
1094 if (user != null) {
1095 return getUserTagsURL(user, groupingId);
1100 return getPhotoURL(user, photo);
1102 return getUserURL(user);
1107 public static String getRssUrl(String user) {
1116 /** Returns the URL to the user's Flickr homepage. */
1117 public static String getUserURL(String user) {
1118 return "http://flickr.com/photos/" + user;
1122 public static String getPhotoURL(String user, String photo) {
1123 return "http://flickr.com/photos/" + user + "/" + photo;
1126 /** Returns the URL for a user tag photo set. */
1127 public static String getUserTagsURL(String user, String tagId) {
1128 return "http://flickr.com/photos/" + user + "/tags/" + tagId;
1131 /** Returns the URL for user set. */
1132 public static String getUserSetsURL(String user, String setId) {
1133 return "http://flickr.com/photos/" + user + "/sets/" + setId;