Package de.fhkn.in.uce.reversal.core

Examples of de.fhkn.in.uce.reversal.core.ReversalSource


     * Creates a {@link Reversal} object.
     */
    public Reversal() {
        try {
            this.metaData = new ReversalMetaData();
            this.source = new ReversalSource();
            this.target = new ReversalTarget();
        } catch (final Exception e) {
            logger.error("Exception occured while creating reversal connection object.", e); //$NON-NLS-1$
            throw new RuntimeException("Could not create reversal connection object.", e); //$NON-NLS-1$
        }
View Full Code Here


     *            the {@link Reversal} to copy
     */
    public Reversal(final Reversal toCopy) {
        try {
            this.metaData = new ReversalMetaData((ReversalMetaData) toCopy.getMetaData());
            this.source = new ReversalSource();
            this.target = new ReversalTarget();
        } catch (final Exception e) {
            logger.error("Exception occured while creating reversal connection object.", e); //$NON-NLS-1$
            throw new RuntimeException("Could not create reversal connection object.", e); //$NON-NLS-1$
        }
View Full Code Here

TOP

Related Classes of de.fhkn.in.uce.reversal.core.ReversalSource

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.