Searched refs:RowFilter (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowFilter.java36 * <code>RowFilter</code> is used to filter out entries from the
38 * <code>RowFilter</code> associated with a <code>JTable</code> might
53 * RowFilter&lt;Object,Object&gt; startsWithAFilter = new RowFilter&lt;Object,Object&gt;() {
67 * <code>RowFilter</code> has two formal type parameters that allow
68 * you to create a <code>RowFilter</code> for a specific model. For
73 * RowFilter&lt;PersonModel,Integer&gt; ageFilter = new RowFilter&lt;PersonModel,Integer&gt;() {
96 public abstract class RowFilter<M,I> { class
99 * some of the default <code>RowFilter</cod
[all...]
H A DDefaultRowSorter.java66 * <code>RowFilter</code> that is specified using the
102 * <code>RowFilter</code>. Refer to <code>TableRowSorter</code> and
103 * <code>RowFilter</code> for more details on the type parameters.
106 * @param <I> the type of the identifier passed to the <code>RowFilter</code>
151 private RowFilter<? super M,? super I> filter;
411 * <code>RowFilter</code>'s <code>include</code> method is passed an
422 public void setRowFilter(RowFilter<? super M,? super I> filter) {
433 public RowFilter<? super M,? super I> getRowFilter() {
799 private RowFilter.Entry<M,I> getFilterEntry(int modelIndex) {
929 RowFilter<
[all...]
/openjdk7/jdk/test/javax/swing/JTable/8005019/
H A Dbug8005019.java60 RowFilter filter = new GeneralFilter(new int[]{0});
67 private static class GeneralFilter extends RowFilter<Object, Object> {
76 public boolean include(RowFilter.Entry<? extends Object, ? extends Object> value) {
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableRowSorter.java30 import javax.swing.RowFilter;
95 * sorter.setRowFilter(RowFilter.regexFilter(".*foo.*"));
110 * Refer to the documentation of <code>RowFilter</code> for an example
124 * @see javax.swing.RowFilter
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DRowFilter.java28 public class RowFilter { class
H A DPNGImageWriter.java296 RowFilter rowFilter = new RowFilter();

Completed in 53 milliseconds