Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/app/lawnmower/LawnmowerData.java @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 606 bytes
Line 
1/*
2  Copyright 2006 by Sean Luke
3  Licensed under the Academic Free License version 3.0
4  See the file "LICENSE" for more information
5*/
6
7
8package ec.app.lawnmower;
9import ec.gp.*;
10
11/*
12 * LawnmowerData.java
13 *
14 * Created: Wed Nov  3 18:32:13 1999
15 * By: Sean Luke
16 */
17
18/**
19 * @author Sean Luke
20 * @version 1.0
21 */
22
23public class LawnmowerData extends GPData
24    {
25    // return value
26    public int x;
27    public int y;
28
29    public void copyTo(final GPData gpd)
30        {
31        LawnmowerData d = (LawnmowerData)gpd;
32        d.x = x;
33        d.y = y;
34        }
35    }
Note: See TracBrowser for help on using the repository browser.