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

org.eclipse.scada.utils.lang.Holder Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2006, 2010 TH4 SYSTEMS GmbH 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:
 *     TH4 SYSTEMS GmbH - initial API and implementation
 *******************************************************************************/
package org.eclipse.scada.utils.lang;

/**
 * This class is inteded to by used for passing objects as "reference to
 * reference".
 * 
 * @author Jens Reimann 
 * @param 
 *            type that should be wrapped
 */
public class Holder
{
    public T value = null;

    public Holder ()
    {
        super ();
    }

    public Holder ( final T value )
    {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy