blob: be71f780b90ac8e8552d27e6a6de70d853e8f1ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 RĂ¼diger Herrmann and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* RĂ¼diger Herrmann - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.rap.tools.launch.rwt.internal.util;
public class StringArrays {
public static String[] append( String[] strings, String string ) {
String[] result = new String[ strings.length + 1 ];
System.arraycopy( strings, 0, result, 0, strings.length );
result[ strings.length ] = string;
return result;
}
public static boolean contains( String[] strings, String string ) {
boolean result = false;
for( int i = 0; !result && i < strings.length; i++ ) {
if( strings[ i ].equals( string ) ) {
result = true;
}
}
return result;
}
private StringArrays() {
// prevent instantiation
}
}