Package org.jitterbit.integration.data.structure.database

Examples of org.jitterbit.integration.data.structure.database.DbFields


     * the data that is stored internally in this object.
     *
     * @see #getDbFields()
     */
    public final void setDbFields(DbFields newFields) {
        DbFields old;
        synchronized (getDataLock()) {
            old = this.dbFields;
            this.dbFields = (newFields == null) ? new DbFields() : newFields.getCopy();
        }
        if (differs(newFields, old)) {
            firePropertyChange(DB_FIELDS, old, newFields);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.structure.database.DbFields

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.