
org.bimserver.models.store.PluginVersion Maven / Gradle / Ivy
Show all versions of PluginBase Show documentation
/**
* 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;
import org.bimserver.emf.IdEObject;
/**
*
* A representation of the model object 'Plugin Version'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.store.PluginVersion#getVersion Version}
* - {@link org.bimserver.models.store.PluginVersion#getType Type}
* - {@link org.bimserver.models.store.PluginVersion#getDescription Description}
* - {@link org.bimserver.models.store.PluginVersion#isMismatch Mismatch}
* - {@link org.bimserver.models.store.PluginVersion#getRepository Repository}
* - {@link org.bimserver.models.store.PluginVersion#getGroupId Group Id}
* - {@link org.bimserver.models.store.PluginVersion#getArtifactId Artifact Id}
*
*
* @see org.bimserver.models.store.StorePackage#getPluginVersion()
* @model
* @extends IdEObject
* @generated
*/
public interface PluginVersion extends IdEObject {
/**
* Returns the value of the 'Version' attribute.
*
*
* If the meaning of the 'Version' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Version' attribute.
* @see #setVersion(String)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_Version()
* @model
* @generated
*/
String getVersion();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getVersion Version}' attribute.
*
*
* @param value the new value of the 'Version' attribute.
* @see #getVersion()
* @generated
*/
void setVersion(String value);
/**
* Returns the value of the 'Type' attribute.
* The literals are from the enumeration {@link org.bimserver.models.store.PluginType}.
*
*
* If the meaning of the 'Type' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' attribute.
* @see org.bimserver.models.store.PluginType
* @see #setType(PluginType)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_Type()
* @model
* @generated
*/
PluginType getType();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getType Type}' attribute.
*
*
* @param value the new value of the 'Type' attribute.
* @see org.bimserver.models.store.PluginType
* @see #getType()
* @generated
*/
void setType(PluginType value);
/**
* Returns the value of the 'Description' attribute.
*
*
* If the meaning of the 'Description' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Description' attribute.
* @see #setDescription(String)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_Description()
* @model
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getDescription Description}' attribute.
*
*
* @param value the new value of the 'Description' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
/**
* Returns the value of the 'Mismatch' attribute.
*
*
* If the meaning of the 'Mismatch' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Mismatch' attribute.
* @see #setMismatch(boolean)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_Mismatch()
* @model
* @generated
*/
boolean isMismatch();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#isMismatch Mismatch}' attribute.
*
*
* @param value the new value of the 'Mismatch' attribute.
* @see #isMismatch()
* @generated
*/
void setMismatch(boolean value);
/**
* Returns the value of the 'Repository' attribute.
*
*
* If the meaning of the 'Repository' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Repository' attribute.
* @see #setRepository(String)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_Repository()
* @model
* @generated
*/
String getRepository();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getRepository Repository}' attribute.
*
*
* @param value the new value of the 'Repository' attribute.
* @see #getRepository()
* @generated
*/
void setRepository(String value);
/**
* Returns the value of the 'Group Id' attribute.
*
*
* If the meaning of the 'Group Id' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Group Id' attribute.
* @see #setGroupId(String)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_GroupId()
* @model
* @generated
*/
String getGroupId();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getGroupId Group Id}' attribute.
*
*
* @param value the new value of the 'Group Id' attribute.
* @see #getGroupId()
* @generated
*/
void setGroupId(String value);
/**
* Returns the value of the 'Artifact Id' attribute.
*
*
* If the meaning of the 'Artifact Id' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Artifact Id' attribute.
* @see #setArtifactId(String)
* @see org.bimserver.models.store.StorePackage#getPluginVersion_ArtifactId()
* @model
* @generated
*/
String getArtifactId();
/**
* Sets the value of the '{@link org.bimserver.models.store.PluginVersion#getArtifactId Artifact Id}' attribute.
*
*
* @param value the new value of the 'Artifact Id' attribute.
* @see #getArtifactId()
* @generated
*/
void setArtifactId(String value);
} // PluginVersion