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

org.bimserver.models.store.Version Maven / Gradle / Ivy

/**
 * 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 java.util.Date;

import org.bimserver.emf.IdEObject;

/**
 * 
 * A representation of the model object 'Version'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.Version#getMajor Major}
  • *
  • {@link org.bimserver.models.store.Version#getMinor Minor}
  • *
  • {@link org.bimserver.models.store.Version#getRevision Revision}
  • *
  • {@link org.bimserver.models.store.Version#getFullString Full String}
  • *
  • {@link org.bimserver.models.store.Version#getDate Date}
  • *
  • {@link org.bimserver.models.store.Version#getDownloadUrl Download Url}
  • *
  • {@link org.bimserver.models.store.Version#getSupportUrl Support Url}
  • *
  • {@link org.bimserver.models.store.Version#getSupportEmail Support Email}
  • *
* * @see org.bimserver.models.store.StorePackage#getVersion() * @model * @extends IdEObject * @generated */ public interface Version extends IdEObject { /** * Returns the value of the 'Major' attribute. * *

* If the meaning of the 'Major' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Major' attribute. * @see #setMajor(Integer) * @see org.bimserver.models.store.StorePackage#getVersion_Major() * @model * @generated */ Integer getMajor(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getMajor Major}' attribute. * * * @param value the new value of the 'Major' attribute. * @see #getMajor() * @generated */ void setMajor(Integer value); /** * Returns the value of the 'Minor' attribute. * *

* If the meaning of the 'Minor' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Minor' attribute. * @see #setMinor(Integer) * @see org.bimserver.models.store.StorePackage#getVersion_Minor() * @model * @generated */ Integer getMinor(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getMinor Minor}' attribute. * * * @param value the new value of the 'Minor' attribute. * @see #getMinor() * @generated */ void setMinor(Integer value); /** * Returns the value of the 'Revision' attribute. * *

* If the meaning of the 'Revision' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Revision' attribute. * @see #setRevision(Integer) * @see org.bimserver.models.store.StorePackage#getVersion_Revision() * @model * @generated */ Integer getRevision(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getRevision Revision}' attribute. * * * @param value the new value of the 'Revision' attribute. * @see #getRevision() * @generated */ void setRevision(Integer value); /** * Returns the value of the 'Full String' attribute. * *

* If the meaning of the 'Full String' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Full String' attribute. * @see #setFullString(String) * @see org.bimserver.models.store.StorePackage#getVersion_FullString() * @model * @generated */ String getFullString(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getFullString Full String}' attribute. * * * @param value the new value of the 'Full String' attribute. * @see #getFullString() * @generated */ void setFullString(String value); /** * Returns the value of the 'Date' attribute. * *

* If the meaning of the 'Date' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Date' attribute. * @see #setDate(Date) * @see org.bimserver.models.store.StorePackage#getVersion_Date() * @model * @generated */ Date getDate(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getDate Date}' attribute. * * * @param value the new value of the 'Date' attribute. * @see #getDate() * @generated */ void setDate(Date value); /** * Returns the value of the 'Download Url' attribute. * *

* If the meaning of the 'Download Url' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Download Url' attribute. * @see #setDownloadUrl(String) * @see org.bimserver.models.store.StorePackage#getVersion_DownloadUrl() * @model * @generated */ String getDownloadUrl(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getDownloadUrl Download Url}' attribute. * * * @param value the new value of the 'Download Url' attribute. * @see #getDownloadUrl() * @generated */ void setDownloadUrl(String value); /** * Returns the value of the 'Support Url' attribute. * *

* If the meaning of the 'Support Url' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Support Url' attribute. * @see #setSupportUrl(String) * @see org.bimserver.models.store.StorePackage#getVersion_SupportUrl() * @model * @generated */ String getSupportUrl(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getSupportUrl Support Url}' attribute. * * * @param value the new value of the 'Support Url' attribute. * @see #getSupportUrl() * @generated */ void setSupportUrl(String value); /** * Returns the value of the 'Support Email' attribute. * *

* If the meaning of the 'Support Email' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Support Email' attribute. * @see #setSupportEmail(String) * @see org.bimserver.models.store.StorePackage#getVersion_SupportEmail() * @model * @generated */ String getSupportEmail(); /** * Sets the value of the '{@link org.bimserver.models.store.Version#getSupportEmail Support Email}' attribute. * * * @param value the new value of the 'Support Email' attribute. * @see #getSupportEmail() * @generated */ void setSupportEmail(String value); } // Version




© 2015 - 2024 Weber Informatics LLC | Privacy Policy