Package com.volantis.shared.metadata.impl

Examples of com.volantis.shared.metadata.impl.ImmutableGeneratingTypedList


        // Create this lazily as it will never be needed for immutable
        // objects and it does not need to be synchronized as mutable objects
        // are not thread safe.
        if (mutableEnumeratedValues == null) {
            mutableEnumeratedValues =
                    new ImmutableGeneratingTypedList(enumeratedValues, SimpleValue.class);
        }
        return mutableEnumeratedValues;
    }
View Full Code Here


        // Create this lazily as it will never be needed for immutable
        // objects and it does not need to be synchronized as mutable objects
        // are not thread safe.
        if (mutableContents == null) {
            mutableContents = new ImmutableGeneratingTypedList(
                    contents, MetaDataValue.class);
        }

        return mutableContents;
    }
View Full Code Here

TOP

Related Classes of com.volantis.shared.metadata.impl.ImmutableGeneratingTypedList

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.