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