All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xtext.util.Wrapper Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2009 itemis AG (http://www.itemis.eu) and others.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.xtext.util;

/**
 * @author Sebastian Zarnekow - Initial contribution and API
 */
public class Wrapper {
	
	private T value;
	
	public static  Wrapper wrap(T value) {
		return new Wrapper(value);
	}
	
	public static  Wrapper forType(Class type) {
		return new Wrapper();
	}
	
	public Wrapper() {
		this(null);
	}
	
	public Wrapper(T value) {
		this.value = value;
	}
	
	public T get() {
		return value;
	}
	
	public void set(T value) {
		this.value = value;
	}
	
	/**
	 * @since 2.9
	 */
	public boolean isEmpty() {
		return value == null;
	}
	
	@Override
	public String toString() {
		return "Wrapper of ("+value+")";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy