1 |
mojays |
2 |
package appl.parallel.data.splittable; |
2 |
|
|
|
3 |
|
|
import edu.bonn.xulu.plugin.io.grid.WritableGridFactory; |
4 |
|
|
// nur fuer Doku |
5 |
|
|
import schmitzm.data.WritableGrid; |
6 |
|
|
import edu.bonn.xulu.plugin.data.grid.MultiGrid; |
7 |
|
|
|
8 |
|
|
/** |
9 |
|
|
* Diese Factory erzeugt Standard-Instanzen von {@link MultiGrid} mit |
10 |
|
|
* durch die Factory {@link SplittableGridLLFactory} erzeugten (auf Standard-Arrays |
11 |
|
|
* basierenden) {@link WritableGrid}-Instanzen als Inhalt. |
12 |
|
|
* @author Dominik Appl |
13 |
|
|
* @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany) |
14 |
|
|
* @version 1.0 |
15 |
|
|
*/ |
16 |
|
|
public class MultiGridFactory extends edu.bonn.xulu.plugin.io.grid.awt.MultiGridFactory { |
17 |
|
|
/** |
18 |
|
|
* Liefert eine Instanz von {@link SplittableGridLLFactory}, die auf Standard-Arrays |
19 |
|
|
* basierende Instanzen von {@link WritableGrid} erzeugt. Mit diesen |
20 |
|
|
* Instanzen wird die GridList gefuellt. |
21 |
|
|
*/ |
22 |
|
|
protected WritableGridFactory getWritableGridFactory() { |
23 |
|
|
return new SplittableGridLLFactory(); |
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
} |