testdata.ClosureClient2 Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2012 itemis AG (http://www.itemis.eu) 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
*******************************************************************************/
package testdata;
import org.eclipse.xtext.xbase.lib.Functions;
/**
* @author Sebastian Zarnekow
* @since 2.3
*/
public class ClosureClient2 {
private String value;
public ClosureClient2(Functions.Function0... functions) {
StringBuilder builder = new StringBuilder("varArgs:");
for(Functions.Function0 function: functions) {
builder.append(function.apply());
}
value = builder.toString();
}
public ClosureClient2(Functions.Function0 function1, Functions.Function0 function2) {
StringBuilder builder = new StringBuilder("twoArgs:");
builder.append(function1.apply());
builder.append(function2.apply());
value = builder.toString();
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy