blob: c80a47831c69e1cca9129a64b3a84d9f72b24609 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG 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:
* SAP AG - initial API and implementation
******************************************************************************/
package org.eclipse.ocl.examples.eventmanager.tests.util;
import org.eclipse.emf.common.util.BasicEList;
import org.eclipse.emf.common.util.EList;
public class EventManagerHelper {
public static <T> EList<T> getEListFor(T object){
EList<T> r = new BasicEList<T>();
r.add(object);
return r;
}
}