CQResultSet.java
596 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.cq.workflow.collection.util.ResultSet
*/
package com.day.cq.workflow.impl.util;
import com.day.cq.workflow.collection.util.ResultSet;
public class CQResultSet<T>
implements ResultSet<T> {
private T[] items;
private long totalCount;
public CQResultSet(T[] items, long totalCount) {
this.items = items;
this.totalCount = totalCount;
}
public T[] getItems() {
return this.items;
}
public long getTotalSize() {
return this.totalCount;
}
}