Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/gp/build/GPBuildDefaults.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: 616 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.gp.build;
9import ec.util.Parameter;
10import ec.gp.*;
11import ec.*;
12
13/*
14 * GPBuildDefaults.java
15 *
16 * Created: Thu Jan 20 17:22:22 2000
17 * By: Sean Luke
18 */
19
20/**
21 * @author Sean Luke
22 * @version 1.0
23 */
24
25public class GPBuildDefaults implements DefaultsForm
26    {
27    public static final String P_BUILD = "build";
28
29    /** Returns the default base. */
30    public static final Parameter base()
31        {
32        return GPDefaults.base().push(P_BUILD);
33        }
34    }
Note: See TracBrowser for help on using the repository browser.