KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > filter > IFilterActionList


1 package org.columba.core.filter;
2
3 import org.columa.core.config.IDefaultItem;
4
5 public interface IFilterActionList extends IDefaultItem {
6
7   IFilterAction get(int index);
8
9   void remove(int index);
10
11   void addEmptyAction();
12
13 }
Popular Tags