Examples of FontItem


Examples of iqq.im.bean.content.FontItem

        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:
          }
        }else if( value instanceof String){
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.