Android Open Source - Photochat Parse Constants






From Project

Back to project page Photochat.

License

The source code is released under:

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...

If you think the Android project Photochat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.navneet.photochat;
//w  w w . ja  v  a2 s  .com
public final class ParseConstants {
  // Class names
  public static final String CLASS_MESSAGES = "Messages";
  // Field names
  public static final String KEY_USER_ID = "userId";
  public static final String KEY_USERNAME = "username";
  public static final String KEY_FRIEND_RELATION = "friendsrelation";
  public static final String KEY_RECIPIENTS_IDS = "recipientsIds";
  public static final String KEY_SENDER_ID = "senderId";
  public static final String KEY_SENDER_NAME = "senderName";
  public static final String KEY_FILE = "file";
  public static final String KEY_FILE_TYPE = "fileType";
  public static final String KEY_CREATED_AT = "createdAt";
  
  public static final String TYPE_IMAGE = "image";
  public static final String TYPE_VIDEO = "video";

}




Java Source Code List

com.navneet.photochat.EditFriendsActivity.java
com.navneet.photochat.FileHelper.java
com.navneet.photochat.FriendsFragment.java
com.navneet.photochat.ImageResizer.java
com.navneet.photochat.InboxFragment.java
com.navneet.photochat.LoginActivity.java
com.navneet.photochat.MD5Util.java
com.navneet.photochat.MainActivity.java
com.navneet.photochat.ParseConstants.java
com.navneet.photochat.PhotoChatApplication.java
com.navneet.photochat.RecipientsActivity.java
com.navneet.photochat.SectionsPagerAdapter.java
com.navneet.photochat.SignUpActivity.java
com.navneet.photochat.UserAdpater.java
com.navneet.photochat.ViewImagesActivity.java
com.navneet.photochat.messageAdapter.java