blob: 574837f2a9dfdf2389cb20ea51dee99a26526279 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) April 5, 2014 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 m;
import java.util.List;
import org.eclipse.pde.api.tools.annotations.NoReference;
public class ConstructorReferenceAnnotation {
private String str;
private List<String> strs;
@NoReference
public ConstructorReferenceAnnotation() {
this.str = "test1";
}
@NoReference
public ConstructorReferenceAnnotation(String str) {
this.str = str;
}
@NoReference
public ConstructorReferenceAnnotation(List<String> strs) {
this.strs = strs;
}
public String getString()
{
return str;
}
public List<String> getStrings()
{
return strs;
}
}