Skip to main content
summaryrefslogtreecommitdiffstats
blob: bd952363a3aed7f33eecb21cd351e5f41dea6fcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*******************************************************************************
/*******************************************************************************
 * Copyright (c) 2013 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.e4.tools.event.spy.internal.util;

import java.util.HashSet;
import java.util.Set;

public class MultilineFormatter {
	@SuppressWarnings("serial")
	private static Set<Character> LINE_DELIMITERS = new HashSet<Character>() {
		{
			add(',');
			add('(');
			add(')');
			add(';');
			add('-');
			add('=');
		}
	};

	public static String format(String value, int lineLength) {
		StringBuilder result = new StringBuilder();
		int counter = 0;

		for (int i = 0; i < value.length(); i++) {
			char c = value.charAt(i);
			result.append(c);

			if (++counter >= lineLength && LINE_DELIMITERS.contains(c)) {
				result.append('\n');
				counter = 0;
			}
		}
		return result.toString();
	}
}

Back to the top