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

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

Go to download

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;

import java.util.Date;

import org.bimserver.emf.IdEObject;
import org.bimserver.models.geometry.Vector3f;
import org.eclipse.emf.common.util.EList;

/**
 * 
 * A representation of the model object 'Concrete Revision'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.ConcreteRevision#getId Id}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getProject Project}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getChecksum Checksum}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getRevisions Revisions}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getSize Size}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getDate Date}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getLastError Last Error}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#isClear Clear}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getSummary Summary}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getUser User}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getIfcHeader Ifc Header}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getMinBounds Min Bounds}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getMaxBounds Max Bounds}
  • *
  • {@link org.bimserver.models.store.ConcreteRevision#getOidCounters Oid Counters}
  • *
* * @see org.bimserver.models.store.StorePackage#getConcreteRevision() * @model * @extends IdEObject * @generated */ public interface ConcreteRevision extends IdEObject { /** * Returns the value of the 'Id' attribute. * *

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

* * @return the value of the 'Id' attribute. * @see #setId(Integer) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Id() * @model * @generated */ Integer getId(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(Integer value); /** * Returns the value of the 'Project' reference. * It is bidirectional and its opposite is '{@link org.bimserver.models.store.Project#getConcreteRevisions Concrete Revisions}'. * *

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

* * @return the value of the 'Project' reference. * @see #setProject(Project) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Project() * @see org.bimserver.models.store.Project#getConcreteRevisions * @model opposite="concreteRevisions" * @generated */ Project getProject(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getProject Project}' reference. * * * @param value the new value of the 'Project' reference. * @see #getProject() * @generated */ void setProject(Project value); /** * Returns the value of the 'Checksum' attribute. * *

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

* * @return the value of the 'Checksum' attribute. * @see #setChecksum(byte[]) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Checksum() * @model * @generated */ byte[] getChecksum(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getChecksum Checksum}' attribute. * * * @param value the new value of the 'Checksum' attribute. * @see #getChecksum() * @generated */ void setChecksum(byte[] value); /** * Returns the value of the 'Revisions' reference list. * The list contents are of type {@link org.bimserver.models.store.Revision}. * It is bidirectional and its opposite is '{@link org.bimserver.models.store.Revision#getConcreteRevisions Concrete Revisions}'. * *

* If the meaning of the 'Revisions' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Revisions' reference list. * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Revisions() * @see org.bimserver.models.store.Revision#getConcreteRevisions * @model opposite="concreteRevisions" * @generated */ EList getRevisions(); /** * Returns the value of the 'Size' attribute. * *

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

* * @return the value of the 'Size' attribute. * @see #setSize(Long) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Size() * @model * @generated */ Long getSize(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getSize Size}' attribute. * * * @param value the new value of the 'Size' attribute. * @see #getSize() * @generated */ void setSize(Long 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#getConcreteRevision_Date() * @model * @generated */ Date getDate(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getDate Date}' attribute. * * * @param value the new value of the 'Date' attribute. * @see #getDate() * @generated */ void setDate(Date value); /** * Returns the value of the 'Last Error' attribute. * *

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

* * @return the value of the 'Last Error' attribute. * @see #setLastError(String) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_LastError() * @model * @generated */ String getLastError(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getLastError Last Error}' attribute. * * * @param value the new value of the 'Last Error' attribute. * @see #getLastError() * @generated */ void setLastError(String value); /** * Returns the value of the 'Clear' attribute. * *

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

* * @return the value of the 'Clear' attribute. * @see #setClear(boolean) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Clear() * @model * @generated */ boolean isClear(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#isClear Clear}' attribute. * * * @param value the new value of the 'Clear' attribute. * @see #isClear() * @generated */ void setClear(boolean value); /** * Returns the value of the 'Summary' reference. * *

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

* * @return the value of the 'Summary' reference. * @see #setSummary(RevisionSummary) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_Summary() * @model * @generated */ RevisionSummary getSummary(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getSummary Summary}' reference. * * * @param value the new value of the 'Summary' reference. * @see #getSummary() * @generated */ void setSummary(RevisionSummary value); /** * Returns the value of the 'User' reference. * *

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

* * @return the value of the 'User' reference. * @see #setUser(User) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_User() * @model * @generated */ User getUser(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getUser User}' reference. * * * @param value the new value of the 'User' reference. * @see #getUser() * @generated */ void setUser(User value); /** * Returns the value of the 'Ifc Header' reference. * *

* If the meaning of the 'Ifc Header' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Ifc Header' reference. * @see #setIfcHeader(IfcHeader) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_IfcHeader() * @model * @generated */ IfcHeader getIfcHeader(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getIfcHeader Ifc Header}' reference. * * * @param value the new value of the 'Ifc Header' reference. * @see #getIfcHeader() * @generated */ void setIfcHeader(IfcHeader value); /** * Returns the value of the 'Min Bounds' reference. * *

* If the meaning of the 'Min Bounds' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Min Bounds' reference. * @see #setMinBounds(Vector3f) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_MinBounds() * @model * @generated */ Vector3f getMinBounds(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getMinBounds Min Bounds}' reference. * * * @param value the new value of the 'Min Bounds' reference. * @see #getMinBounds() * @generated */ void setMinBounds(Vector3f value); /** * Returns the value of the 'Max Bounds' reference. * *

* If the meaning of the 'Max Bounds' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Max Bounds' reference. * @see #setMaxBounds(Vector3f) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_MaxBounds() * @model * @generated */ Vector3f getMaxBounds(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getMaxBounds Max Bounds}' reference. * * * @param value the new value of the 'Max Bounds' reference. * @see #getMaxBounds() * @generated */ void setMaxBounds(Vector3f value); /** * Returns the value of the 'Oid Counters' attribute. * *

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

* * @return the value of the 'Oid Counters' attribute. * @see #setOidCounters(byte[]) * @see org.bimserver.models.store.StorePackage#getConcreteRevision_OidCounters() * @model * @generated */ byte[] getOidCounters(); /** * Sets the value of the '{@link org.bimserver.models.store.ConcreteRevision#getOidCounters Oid Counters}' attribute. * * * @param value the new value of the 'Oid Counters' attribute. * @see #getOidCounters() * @generated */ void setOidCounters(byte[] value); } // ConcreteRevision




© 2015 - 2025 Weber Informatics LLC | Privacy Policy