/[xulu]/trunk/src/skrueger/gol/GameOfLifeContentManager.java
ViewVC logotype

Contents of /trunk/src/skrueger/gol/GameOfLifeContentManager.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 114 - (show annotations)
Mon Jul 11 11:31:25 2011 UTC (13 years, 5 months ago) by mojays
File size: 2393 byte(s)
SCHMITZM library updated to current version (2.6-SNAPSHOT)
Added gt-xsd-filter.jar, gt-xsd-gml2.jar, picocontainer.jar and xsd.jar from Geotools 2.6.5
1 /** XULU - This file is part of the eXtendable Unified Land Use Modelling Platform (XULU)
2
3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
4 This library 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 Lesser General Public License for more details.
5 You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
6
7 Diese Bibliothek ist freie Software; Sie dürfen sie unter den Bedingungen der GNU Lesser General Public License, wie von der Free Software Foundation veröffentlicht, weiterverteilen und/oder modifizieren; entweder gemäß Version 2.1 der Lizenz oder (nach Ihrer Option) jeder späteren Version.
8 Diese Bibliothek wird in der Hoffnung weiterverbreitet, daß sie nützlich sein wird, jedoch OHNE IRGENDEINE GARANTIE, auch ohne die implizierte Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Mehr Details finden Sie in der GNU Lesser General Public License.
9 Sie sollten eine Kopie der GNU Lesser General Public License zusammen mit dieser Bibliothek erhalten haben; falls nicht, schreiben Sie an die Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA.
10 **/
11
12 package skrueger.gol;
13
14 import de.schmitzm.data.property.ScalarProperty;
15 import de.schmitzm.geotools.data.WritableGrid;
16 import edu.bonn.xulu.data.XuluDataException;
17 import edu.bonn.xulu.model.AbstractModelContentManager;
18 import edu.bonn.xulu.model.ValuePropertyResource;
19
20 public class GameOfLifeContentManager extends AbstractModelContentManager {
21
22 public GameOfLifeContentManager() {
23 super(2);
24
25 resource[0] = new ValuePropertyResource("Startzustand für GoL", ScalarProperty.class , WritableGrid.class ,false);
26
27 resource[1] = new ValuePropertyResource("GoL zur Laufzeit", ScalarProperty.class , WritableGrid.class ,false);
28 }
29
30 @Override
31 public void checkAndError() throws XuluDataException {
32 // TODO Auto-generated method stub
33 super.checkAndError();
34 }
35
36 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26