All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.askfast.model.ModelBase Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show newest version
package com.askfast.model;

import com.askfast.util.JSONUtil;

public abstract class ModelBase
{
    public String toJSON()
    {
        String json = "{}";
        try
        {
            json = JSONUtil.serialize( this );
        }
        catch ( Exception e )
        {
        }
        return json;
    }
    
    public static  T fromJSON(String json_string, Class classType)
    {
        T dialogObject = null;
        try
        {
            dialogObject = JSONUtil.deserialize( json_string, classType );
        }
        catch ( Exception e )
        {
        }
        return dialogObject;
     }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy