示例#1
0
        public static serializerJSON getInstance()
        {
            if (instance == null)
            {
                instance = new serializerJSON();
            }

            return(instance);
        }
示例#2
0
        public static serializerJSON getInstance(String fName)
        {
            if (instance == null)
            {
                instance = new serializerJSON();
            }

            instance.fileName = fName;
            return(instance);
        }