Package org.codehaus.aspectwerkz.persistence

Examples of org.codehaus.aspectwerkz.persistence.ModifiedField


                             final int deploymentModel) {
        if (modifiedField == null) throw new IllegalArgumentException("modified field can not be null");
        if (deploymentModel != DeploymentModel.PER_JVM && index == null) throw new IllegalArgumentException("index can not be null");

        // make a deep copy of the modified field
        m_modifiedField = new ModifiedField(modifiedField.getName(),
                SerializationUtils.clone((Serializable)modifiedField.getValue()));
        m_index = index;
        m_deploymentModel = deploymentModel;
    }
View Full Code Here

TOP

Related Classes of org.codehaus.aspectwerkz.persistence.ModifiedField

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.