Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/vector/VectorDefaults.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: 701 bytes
Line 
1/*
2  Copyright 2006 by Sean Luke and George Mason University
3  Licensed under the Academic Free License version 3.0
4  See the file "LICENSE" for more information
5*/
6
7
8package ec.vector;
9
10import ec.*;
11import ec.util.*;
12
13/*
14 * VectorDefaults.java
15 *
16 * Created: Thu Mar 22 13:22:30 2001
17 * By: Liviu Panait
18 */
19
20/**
21 * Vector defaults is the basic defaults class for the Vector package.
22 *
23 * @author Liviu Panait
24 * @version 1.0
25 */
26
27public final class VectorDefaults implements DefaultsForm
28    {
29    public static final String P_VECTOR = "vector";
30
31    /** Returns the default base. */
32    public static final Parameter base()
33        {
34        return new Parameter(P_VECTOR);
35        }   
36    }
Note: See TracBrowser for help on using the repository browser.