package com.opentrafficsimulation.utility.content; /** * Contains text definitions to be used in app * @author macromania * */ public class AppText { public static String WELCOME = "Welcome to Open Traffic Simulation"; public static String DUMMY_TEXT = "<html>The project, Open Traffic Simulation, is an open-source software for traffic simulation. It has SUMO as simulation server and a Java based GUI program<br/>to create and to modify customized simulations. Also, it has a background service for data storage and reporting system used integration with MySQL.<br/>A signaling control interface for modifying traffic lights on running simulation is another smart feature of the project.<br/><br/> The projects has a sophisticated, intuitive road editor to design and to modify a road network to be used in the simulation. This road editor is a feature<br/> that makes the project standing one step further with respect to other simulations and SUMO itself. All current traffic simulations are designed by using<br/> XML driven road networks which are hard to create without a visual editor. In this context, the project is aiming to solve this common interaction problem. </html>"; //Road Editor public static String ROAD_TYPE = "Road Type"; public static String TYPE_GRID = "Grid"; public static String TYPE_SPIDER = "Spider"; public static String TYPE_RANDOM = "Random"; public static String ABSTRACT_MAP = "Abstract Road Network"; public static String LANE_NUMBER = "Lane Number(1-3)"; public static String ABSTRACT_TYPE = "Abstract Network Type"; public static String LANE_SPEED = "Lane Speed(10-99)"; public static String WHETHER_TFL = "Traffic Light(Y/N)"; public static String ABSTRACT_ATTRIBUTE = "Abstract Network Attribute"; public static String TFL_YES = "Yes"; public static String TFL_NO = "No"; public static String COMMON_ATTRIBUTE = "Common Attribute"; public static String GRID_ATTRIBUTE = "Grid-network Attribute"; public static String GRID_NUMBER = "Grid Number(2-6)"; public static String GRID_LENGTH = "Grid Length(30-80)"; public static String ARM_NUMBER = "Arm Number(3-6)"; public static String CIRCLE_NUMBER = "Circle Number(2-6)"; public static String SPACE_RADIUS = "Space Radius"; public static String SPIDER_ATTRIBUTE = "Spider-network Attribute"; public static String ITERATION = "Iterations"; public static String MAX_DISTANCE = "Maximum Distance"; public static String MIN_DISTANCE = "Minimum Distance"; public static String RANDOM_ATTRIBUTE = "Random-network Attribute"; //public static String MAP_BOX = "Map Review"; public static String IMPORT_OSM = "Selete your map file"; public static String BUILDMAP = "Build Map"; public static String OSM_BOX = "Import map file"; public static String OSM_SELECTED = "Selected Map:"; }