Here you can find the source of AddToList(List
public static void AddToList(List<String> tips, String tip)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static void AddToList(List<String> tips, String tip) { for (String exist : tips) { if (exist.equals(tip)) { return; }/*ww w .j a va2 s . c o m*/ } tips.add(tip); } }