Package org.hudsonci.utils.marshal.xref.XReference

Examples of org.hudsonci.utils.marshal.xref.XReference.InstanceHolder


     */
    @SuppressWarnings({"unchecked"})
    protected XReference.Holder createStoredHolder(final XReference ref, final Object target) {
        switch (holderType) {
            case HARD:
                return new InstanceHolder(target);
            case SOFT:
                return new SoftUnmarshalHolder(ref, target);
            default:
                throw new Error();
        }
View Full Code Here

TOP

Related Classes of org.hudsonci.utils.marshal.xref.XReference.InstanceHolder

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.