/******************************************************************************* * TurtleKit 3 - Agent Based and Artificial Life Simulation Platform * Copyright (C) 2011-2014 Fabien Michel * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package turtlekit.agr; public interface TKOrganization { /** * The value of this constant is {@value}. */ public static final String MODEL_ROLE = "model"; /** * The value of this constant is {@value}. */ public static final String ENGINE_GROUP = "engine"; /** * The value of this constant is {@value}. */ public static final String MODEL_GROUP = "model"; /** * The value of this constant is {@value}. */ public static final String TURTLES_GROUP = "turtles"; /** * The value of this constant is {@value}. */ public static final String SCHEDULER_ROLE = "scheduler"; /** * The value of this constant is {@value}. */ public static final String TURTLE_ROLE = "turtle"; /** * The value of this constant is {@value}. */ public static final String VIEWER_ROLE = "viewer"; /** * The value of this constant is {@value}. */ public static final String ENVIRONMENT_ROLE = "env"; final public static String TK_COMMUNITY = "TK"; public static final String LAUNCHING = "launch"; }