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

org.bimserver.models.store.impl.PluginVersionImpl 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 org.bimserver.emf.IdEObjectImpl;

import org.bimserver.models.store.PluginType;
import org.bimserver.models.store.PluginVersion;
import org.bimserver.models.store.StorePackage;

import org.eclipse.emf.ecore.EClass;

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

* The following features are implemented: *

*
    *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getVersion Version}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getType Type}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getDescription Description}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#isMismatch Mismatch}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getRepository Repository}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getGroupId Group Id}
  • *
  • {@link org.bimserver.models.store.impl.PluginVersionImpl#getArtifactId Artifact Id}
  • *
* * @generated */ public class PluginVersionImpl extends IdEObjectImpl implements PluginVersion { /** * * * @generated */ protected PluginVersionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return StorePackage.Literals.PLUGIN_VERSION; } /** * * * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * * * @generated */ public String getVersion() { return (String) eGet(StorePackage.Literals.PLUGIN_VERSION__VERSION, true); } /** * * * @generated */ public void setVersion(String newVersion) { eSet(StorePackage.Literals.PLUGIN_VERSION__VERSION, newVersion); } /** * * * @generated */ public PluginType getType() { return (PluginType) eGet(StorePackage.Literals.PLUGIN_VERSION__TYPE, true); } /** * * * @generated */ public void setType(PluginType newType) { eSet(StorePackage.Literals.PLUGIN_VERSION__TYPE, newType); } /** * * * @generated */ public String getDescription() { return (String) eGet(StorePackage.Literals.PLUGIN_VERSION__DESCRIPTION, true); } /** * * * @generated */ public void setDescription(String newDescription) { eSet(StorePackage.Literals.PLUGIN_VERSION__DESCRIPTION, newDescription); } /** * * * @generated */ public boolean isMismatch() { return (Boolean) eGet(StorePackage.Literals.PLUGIN_VERSION__MISMATCH, true); } /** * * * @generated */ public void setMismatch(boolean newMismatch) { eSet(StorePackage.Literals.PLUGIN_VERSION__MISMATCH, newMismatch); } /** * * * @generated */ public String getRepository() { return (String) eGet(StorePackage.Literals.PLUGIN_VERSION__REPOSITORY, true); } /** * * * @generated */ public void setRepository(String newRepository) { eSet(StorePackage.Literals.PLUGIN_VERSION__REPOSITORY, newRepository); } /** * * * @generated */ public String getGroupId() { return (String) eGet(StorePackage.Literals.PLUGIN_VERSION__GROUP_ID, true); } /** * * * @generated */ public void setGroupId(String newGroupId) { eSet(StorePackage.Literals.PLUGIN_VERSION__GROUP_ID, newGroupId); } /** * * * @generated */ public String getArtifactId() { return (String) eGet(StorePackage.Literals.PLUGIN_VERSION__ARTIFACT_ID, true); } /** * * * @generated */ public void setArtifactId(String newArtifactId) { eSet(StorePackage.Literals.PLUGIN_VERSION__ARTIFACT_ID, newArtifactId); } } //PluginVersionImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy