Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/Singleton.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: 599 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;
9
10/*
11 * Singleton.java
12 *
13 * Created: Wed Oct 13 14:57:00 1999
14 * By: Sean Luke
15 */
16
17/**
18 * A Singleton is a class for which there will be only one instance
19 * in the entire course of a run, and which will exist for pretty
20 * much the entire run.  Singletons are set up using setup(...)
21 * when they are first created.
22 *
23 * @author Sean Luke
24 * @version 1.0
25 */
26
27public interface Singleton extends Setup
28    {
29    }
Note: See TracBrowser for help on using the repository browser.