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

org.eclipse.birt.chart.model.data.impl.DateTimeDataSetImpl Maven / Gradle / Ivy

There is a newer version: 4.6.0-20160607
Show newest version
/***********************************************************************
 * Copyright (c) 2004 Actuate Corporation.
 * 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:
 * Actuate Corporation - initial API and implementation
 ***********************************************************************/

package org.eclipse.birt.chart.model.data.impl;

import org.eclipse.birt.chart.model.data.DataFactory;
import org.eclipse.birt.chart.model.data.DataPackage;
import org.eclipse.birt.chart.model.data.DataSet;
import org.eclipse.birt.chart.model.data.DateTimeDataSet;
import org.eclipse.emf.ecore.EClass;

/**
 *  An implementation of the model object 'Date Time Data Set'. 
 * 

*

* * @generated */ public class DateTimeDataSetImpl extends DataSetImpl implements DateTimeDataSet { /** * * @generated */ protected DateTimeDataSetImpl( ) { super( ); } /** * * @generated */ @Override protected EClass eStaticClass( ) { return DataPackage.Literals.DATE_TIME_DATA_SET; } /** * A convenience method to create an initialized 'DateTimeDataSet' instance * * @param oValues * The Collection (of Calendar(s)), Calendar[] or long[] of values associated with this dataset * * @return */ public static final DateTimeDataSet create( Object oValues ) { final DateTimeDataSet dtds = DataFactory.eINSTANCE.createDateTimeDataSet( ); ( (DateTimeDataSetImpl) dtds ).initialize( ); dtds.setValues( oValues ); return dtds; } /** * This method performs any initialization of the instance when created * * Note: Manually written */ protected void initialize( ) { } /** * @generated */ public DateTimeDataSet copyInstance( ) { DateTimeDataSetImpl dest = new DateTimeDataSetImpl( ); dest.set( this ); return dest; } /** * @generated */ protected void set( DateTimeDataSet src ) { super.set( src ); } } //DateTimeDataSetImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy