Examples of FaceItem


Examples of iqq.im.bean.content.FaceItem

        Object value = json.get(i);
        if(value instanceof JSONArray){
          JSONArray items = (JSONArray) value;
          ContentItem.Type type = ContentItem.Type.valueOfRaw(items.getString(0));
          switch (type) {
            case FACE:    addContentItem(new FaceItem(items.toString())); break;
            case FONT:    addContentItem(new FontItem(items.toString())); break;
            case CFACE:   addContentItem(new CFaceItem(items.toString())); break;
            case OFFPIC: addContentItem(new OffPicItem(items.toString())); break;
            default:
          }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.