1 package fr.ove.palette.swing;
2
3 import java.awt.*;
4 import fr.ove.palette.swing.*;
5
6 /***
7 * The palette with the calculus operators, i.e. summation, product and integral.
8 *
9 * @author © 1999 DIRAT Laurent
10 * @version 1.0 20/09/1999
11 */
12 public class OperatorPalette extends PaletteContainer {
13 /***
14 * The contstructor.
15 */
16 public OperatorPalette() {
17 setLayout(new FlowLayout(FlowLayout.CENTER, 5, 2));
18 addPalette(new BasicOperatorsPalette());
19 addPalette(new NonBasicOperatorsPalette());
20 }
21 }