Examples of referenceScope()


Examples of org.auraframework.util.json.Json.Serialization.referenceScope()

    @Override
    public ReferenceScope getReferenceScope(Object value) {
        Serialization serialization = value.getClass().getAnnotation(Serialization.class);
        if (serialization != null) {
            return serialization.referenceScope();
        }
        return ReferenceScope.ACTION;
    }

    /**
 
View Full Code Here

Examples of org.auraframework.util.json.Json.Serialization.referenceScope()

        @Override
        public final ReferenceScope getReferenceScope(JsonSerializable value) {
            Serialization serialization = value.getClass().getAnnotation(Serialization.class);
            if (serialization != null) {
                return serialization.referenceScope();
            }
            return ReferenceScope.ACTION;
        }

        @Override
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.