From 495cd6c4f906123391e097f940abdb0878595b95 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 2 Jan 2013 13:38:58 +0100 Subject: [PATCH] Add filter interface. --- .../java/net/pterodactylus/reactor/Filter.java | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/main/java/net/pterodactylus/reactor/Filter.java diff --git a/src/main/java/net/pterodactylus/reactor/Filter.java b/src/main/java/net/pterodactylus/reactor/Filter.java new file mode 100644 index 0000000..0afb226 --- /dev/null +++ b/src/main/java/net/pterodactylus/reactor/Filter.java @@ -0,0 +1,43 @@ +/* + * Reactor - Filter.java - Copyright © 2013 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.reactor; + +/** + * Defines a filter that runs between {@link Query}s and {@link Trigger}s and + * can be used to convert a {@link State} into another {@link State}. This can + * be used to extract further information from a state. + *

+ * An example scenario would be a {@link Query} that requests a web site and a + * {@link Filter} that extracts content from the web site. That way the same + * {@link Query} could be used for multiple {@link Reaction}s without requiring + * modifications. + * + * @author David ‘Bombe’ Roden + */ +public interface Filter { + + /** + * Converts the given state into a different state. + * + * @param state + * The state to convert + * @return The new state + */ + State filter(State state); + +} -- 2.7.4