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

org.bimserver.models.store.impl.VersionImpl Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

There is a newer version: 2.0.0
Show newest version
/**
 * Copyright (C) 2009-2014 BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 */
package org.bimserver.models.store.impl;

import java.util.Date;

import org.bimserver.emf.IdEObjectImpl;
import org.bimserver.models.store.StorePackage;
import org.bimserver.models.store.Version;
import org.eclipse.emf.ecore.EClass;

/**
 * 
 * An implementation of the model object 'Version'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.bimserver.models.store.impl.VersionImpl#getMajor Major}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getMinor Minor}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getRevision Revision}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getFullString Full String}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getDate Date}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getDownloadUrl Download Url}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getSupportUrl Support Url}
  • *
  • {@link org.bimserver.models.store.impl.VersionImpl#getSupportEmail Support Email}
  • *
* * @generated */ public class VersionImpl extends IdEObjectImpl implements Version { /** * * * @generated */ protected VersionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return StorePackage.Literals.VERSION; } /** * * * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * * * @generated */ public Integer getMajor() { return (Integer) eGet(StorePackage.Literals.VERSION__MAJOR, true); } /** * * * @generated */ public void setMajor(Integer newMajor) { eSet(StorePackage.Literals.VERSION__MAJOR, newMajor); } /** * * * @generated */ public Integer getMinor() { return (Integer) eGet(StorePackage.Literals.VERSION__MINOR, true); } /** * * * @generated */ public void setMinor(Integer newMinor) { eSet(StorePackage.Literals.VERSION__MINOR, newMinor); } /** * * * @generated */ public Integer getRevision() { return (Integer) eGet(StorePackage.Literals.VERSION__REVISION, true); } /** * * * @generated */ public void setRevision(Integer newRevision) { eSet(StorePackage.Literals.VERSION__REVISION, newRevision); } /** * * * @generated */ public String getFullString() { return (String) eGet(StorePackage.Literals.VERSION__FULL_STRING, true); } /** * * * @generated */ public void setFullString(String newFullString) { eSet(StorePackage.Literals.VERSION__FULL_STRING, newFullString); } /** * * * @generated */ public Date getDate() { return (Date) eGet(StorePackage.Literals.VERSION__DATE, true); } /** * * * @generated */ public void setDate(Date newDate) { eSet(StorePackage.Literals.VERSION__DATE, newDate); } /** * * * @generated */ public String getDownloadUrl() { return (String) eGet(StorePackage.Literals.VERSION__DOWNLOAD_URL, true); } /** * * * @generated */ public void setDownloadUrl(String newDownloadUrl) { eSet(StorePackage.Literals.VERSION__DOWNLOAD_URL, newDownloadUrl); } /** * * * @generated */ public String getSupportUrl() { return (String) eGet(StorePackage.Literals.VERSION__SUPPORT_URL, true); } /** * * * @generated */ public void setSupportUrl(String newSupportUrl) { eSet(StorePackage.Literals.VERSION__SUPPORT_URL, newSupportUrl); } /** * * * @generated */ public String getSupportEmail() { return (String) eGet(StorePackage.Literals.VERSION__SUPPORT_EMAIL, true); } /** * * * @generated */ public void setSupportEmail(String newSupportEmail) { eSet(StorePackage.Literals.VERSION__SUPPORT_EMAIL, newSupportEmail); } } //VersionImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy