Code Examples
A repository of 155 code examples for BeepBeep
package-info.java
1 /*
2  BeepBeep, an event stream processor
3  Copyright (C) 2008-2016 Sylvain HallĂ©
4 
5  This program is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published
7  by the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 /**
20  * Create custom processor objects by creating new classes that
21  * inherit from {@link Processor}.
22  * <p>
23  * Extensibility is a key concept in BeepBeep. Apart from its core, which is
24  * made of only a handful of generic classes, all of BeepBeep's functionality
25  * is achieved by creating descendents of the core's basic objects.
26  * BeepBeep already comes with lots of pre-defined
27  * <a href="http://liflab.github.io/beepbeep-3-palettes">palettes</a>; however,
28  * if none suits your needs, you can easily create new {@link Processor}
29  * objects that perform the desired computation. These new objects can then
30  * be connected freely with existing processors.
31  * <p>
32  * In this section, we give a few simple examples of processor objects that
33  * perform special kinds of computation.
34  *
35  * @author Sylvain HallĂ©
36  */
37 package customprocessors;