Package com.googlecode.jsonplugin.annotations

Examples of com.googlecode.jsonplugin.annotations.JSON


                } else
                    baseAccessor = accessor;

                if (baseAccessor != null) {

                    JSON json = baseAccessor.getAnnotation(JSON.class);
                    if (json != null) {
                        if (!json.serialize())
                            continue;
                        else if (json.name().length() > 0)
                            name = json.name();
                    }

                    //ignore "class" and others
                    if (this.shouldExcludeProperty(clazz, prop)) {
                        continue;
View Full Code Here


    /**
     * Add date to buffer
     */
    private void date(Date date, Method method) {
        JSON json = null;
        if (method != null)
            json = method.getAnnotation(JSON.class);
        if (this.formatter == null)
            this.formatter = new SimpleDateFormat(JSONUtil.RFC3339_FORMAT);

        DateFormat formatter = (json != null) && (json.format().length() > 0) ? new SimpleDateFormat(
                json.format())
                : this.formatter;
        this.string(formatter.format(date));
    }
View Full Code Here

            if (elements.containsKey(name)) {
                Object value = elements.get(name);
                Method method = prop.getWriteMethod();

                if (method != null) {
                    JSON json = method.getAnnotation(JSON.class);
                    if ((json != null) && !json.deserialize()) {
                        continue;
                    }

                    //use only public setters
                    if (Modifier.isPublic(method.getModifiers())) {
View Full Code Here

                return new Double(number.doubleValue());
            else if (String.class.equals(clazz))
                return value.toString();
        } else if (clazz.equals(Date.class)) {
            try {
                JSON json = method.getAnnotation(JSON.class);

                DateFormat formatter = new SimpleDateFormat(
                        (json != null) && (json.format().length() > 0) ?
                                json.format() : this.dateFormat);
                return formatter.parse((String) value);
            } catch (ParseException e) {
                log.error(e.getMessage(), e);
                throw new JSONException("Unable to parse date from: " + value);
            }
View Full Code Here

TOP

Related Classes of com.googlecode.jsonplugin.annotations.JSON

Copyright © 2018 www.massapicom. 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.