Here you can find the source of getFlightNumber()
public static String getFlightNumber()
//package com.java2s; /*//from w ww .j a v a 2 s. co m * All GTAS code is Copyright 2016, Unisys Corporation. * * Please see LICENSE.txt for details. */ import java.util.Random; public class Main { public static String getFlightNumber() { Random random = new Random(); Integer select = random.nextInt(999); return select.toString(); } }