Package ch.pterrettaz.jmess.core

Examples of ch.pterrettaz.jmess.core.Data


    public int getRowCount() {
        return results.size();
    }

    public Object getValueAt(int row, int column) {
        Data data = results.get(row);
        switch (Column.forIndex(column)) {
        case Package:
            return data instanceof ClassData ? ((ClassData) data).getPackageName() : "";
        case Class:
            return data.getName();
        case Location:
            return data.getLocation();
        }
        return "";
    }
View Full Code Here

TOP

Related Classes of ch.pterrettaz.jmess.core.Data

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.