blob: 313f8a5ee44bdc9471039bfb2aac0f2682546922 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* 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/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.factory;
import org.eclipse.jpt.common.utility.factory.Factory;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
/**
* Transform any object, except <code>null</code>, into a single
* client-specified object. Any <code>null</code> object will be
* transformed into <code>null</code>.
*
* @param <T> the type of the object returned by the factory
* @see NullFactory
*/
public class StaticFactory<T>
implements Factory<T>
{
private final T value;
public StaticFactory(T value) {
super();
this.value = value;
}
public T create() {
return this.value;
}
@Override
public String toString() {
return ObjectTools.toString(this, this.value);
}
}