Package autotest.common.table

Examples of autotest.common.table.RpcDataSource$RpcQuery


                            { START_DATE_TEXT, "Recurring start" },
                            { "loop_period", "Loop period" },
                            { "loop_count", "Loop count" }};

    public RecurringTable() {
        super(RECURRING_COLUMNS, new RpcDataSource("get_recurring",
                                                   "get_num_recurring"));
        sortOnColumn("id", SortDirection.DESCENDING);
    }
View Full Code Here


            { "priority", "Priority" }, { "control_type", "Client/Server" },
            { "created_on", "Created" }, { HOSTS_SUMMARY, "Status" } };
    private static final int STATUS_COLUMN = JOB_COLUMNS.length-1;
   
    public JobTable() {
        super(JOB_COLUMNS, new RpcDataSource("get_jobs_summary", "get_num_jobs"));
        sortOnColumn("id", SortDirection.DESCENDING);
    }
View Full Code Here

TOP

Related Classes of autotest.common.table.RpcDataSource$RpcQuery

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.