Package dbfit.util

Examples of dbfit.util.DataCell


    }

    @SuppressWarnings("unchecked")
    public static MatchResult createCellResult(final String s1, final String s2,
            final MatchStatus status, final Exception ex) {
        DataCell o1 = fakeDataCell(s1);
        DataCell o2 = fakeDataCell(s2);

        MatchResult res = new MatchResult(o1, o2, status, DataCell.class, ex);

        return res;
    }
View Full Code Here


        return res;
    }

    public static DataCell fakeDataCell(final String stringValue) {
        return new DataCell(null, null) {
            @Override public String toString() { return stringValue; }
        };
    }
View Full Code Here

TOP

Related Classes of dbfit.util.DataCell

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.