org.bimserver.models.store.impl.PluginBundleVersionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pluginbase Show documentation
Show all versions of pluginbase Show documentation
Base project for BIMserver plugin development. Some plugins mights also need the Shared library
The 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.PluginBundleType;
import org.bimserver.models.store.PluginBundleVersion;
import org.bimserver.models.store.StorePackage;
import org.eclipse.emf.ecore.EClass;
/**
*
* An implementation of the model object 'Plugin Bundle Version'.
*
*
* The following features are implemented:
*
*
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getVersion Version}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getType Type}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getDescription Description}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#isMismatch Mismatch}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getRepository Repository}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getGroupId Group Id}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getArtifactId Artifact Id}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getIcon Icon}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getOrganization Organization}
* - {@link org.bimserver.models.store.impl.PluginBundleVersionImpl#getName Name}
*
*
* @generated
*/
public class PluginBundleVersionImpl extends IdEObjectImpl implements PluginBundleVersion {
/**
*
*
* @generated
*/
protected PluginBundleVersionImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return StorePackage.Literals.PLUGIN_BUNDLE_VERSION;
}
/**
*
*
* @generated
*/
@Override
protected int eStaticFeatureCount() {
return 0;
}
/**
*
*
* @generated
*/
public String getVersion() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__VERSION, true);
}
/**
*
*
* @generated
*/
public void setVersion(String newVersion) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__VERSION, newVersion);
}
/**
*
*
* @generated
*/
public PluginBundleType getType() {
return (PluginBundleType) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__TYPE, true);
}
/**
*
*
* @generated
*/
public void setType(PluginBundleType newType) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__TYPE, newType);
}
/**
*
*
* @generated
*/
public String getDescription() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__DESCRIPTION, true);
}
/**
*
*
* @generated
*/
public void setDescription(String newDescription) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__DESCRIPTION, newDescription);
}
/**
*
*
* @generated
*/
public boolean isMismatch() {
return (Boolean) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__MISMATCH, true);
}
/**
*
*
* @generated
*/
public void setMismatch(boolean newMismatch) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__MISMATCH, newMismatch);
}
/**
*
*
* @generated
*/
public String getRepository() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__REPOSITORY, true);
}
/**
*
*
* @generated
*/
public void setRepository(String newRepository) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__REPOSITORY, newRepository);
}
/**
*
*
* @generated
*/
public String getGroupId() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__GROUP_ID, true);
}
/**
*
*
* @generated
*/
public void setGroupId(String newGroupId) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__GROUP_ID, newGroupId);
}
/**
*
*
* @generated
*/
public String getArtifactId() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ARTIFACT_ID, true);
}
/**
*
*
* @generated
*/
public void setArtifactId(String newArtifactId) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ARTIFACT_ID, newArtifactId);
}
/**
*
*
* @generated
*/
public byte[] getIcon() {
return (byte[]) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ICON, true);
}
/**
*
*
* @generated
*/
public void setIcon(byte[] newIcon) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ICON, newIcon);
}
/**
*
*
* @generated
*/
public String getOrganization() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ORGANIZATION, true);
}
/**
*
*
* @generated
*/
public void setOrganization(String newOrganization) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__ORGANIZATION, newOrganization);
}
/**
*
*
* @generated
*/
public String getName() {
return (String) eGet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__NAME, true);
}
/**
*
*
* @generated
*/
public void setName(String newName) {
eSet(StorePackage.Literals.PLUGIN_BUNDLE_VERSION__NAME, newName);
}
} //PluginBundleVersionImpl
© 2015 - 2025 Weber Informatics LLC | Privacy Policy