Skip to content
  • This project
    • Loading...
  • Sign in

Products / LILOM

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 2
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • LILOM
  • LILOM Library
  • se
  • lil
  • om
  • Registry.java
  • Christian Gerdes's avatar
    Added new class, Registry, which contains a static list of monitors. · e09b3c83 ...
    e09b3c83
    Changed Testrunner to use the Registry class instead.
    Christian Gerdes authored 2016-01-21 16:12:12 +0100
Registry.java 274 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package se.lil.om;

import java.util.ArrayList;

public class Registry {
	private static ArrayList<OraMon> oraList = null;
	
	public static ArrayList<OraMon> getList() {
		if (oraList == null) {
			oraList = new ArrayList<OraMon>();
		}
		return oraList;
	}
}