Here you can find the source of fmtSeq(Iterator it, String divider)
public static String fmtSeq(Iterator it, String divider)
//package com.java2s; /*//from w w w . j a v a 2s . c o m * USE - UML based specification environment * Copyright (C) 1999-2004 Mark Richters, University of Bremen * * 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 2 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, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ import java.util.Iterator; public class Main { public static String fmtSeq(Object objarr[], int beginIndex, String divider) { String resString = new String(); if (objarr != null) { boolean first = true; for (int i = beginIndex; i < objarr.length; i++) { if (first) first = false; else resString += divider; resString += objarr[i]; } } return resString; } public static String fmtSeq(Object objarr[], String divider) { return fmtSeq(objarr, 0, divider); } public static String fmtSeq(Iterator it, String divider) { String resString = new String(); boolean first = true; while (it.hasNext()) { if (first) first = false; else resString += divider; resString += it.next(); } return resString; } }