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

org.bimserver.models.store.ModelCheckerResultLine 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;

/**
 * 
 * A representation of the model object 'Model Checker Result Line'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.bimserver.models.store.ModelCheckerResultLine#getFieldOrClass Field Or Class}
  • *
  • {@link org.bimserver.models.store.ModelCheckerResultLine#getValue Value}
  • *
  • {@link org.bimserver.models.store.ModelCheckerResultLine#getShouldBe Should Be}
  • *
  • {@link org.bimserver.models.store.ModelCheckerResultLine#getType Type}
  • *
  • {@link org.bimserver.models.store.ModelCheckerResultLine#getObjectId Object Id}
  • *
* * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine() * @model * @generated */ public interface ModelCheckerResultLine extends ModelCheckerResultItem { /** * Returns the value of the 'Field Or Class' attribute. * *

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

* * @return the value of the 'Field Or Class' attribute. * @see #setFieldOrClass(String) * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine_FieldOrClass() * @model * @generated */ String getFieldOrClass(); /** * Sets the value of the '{@link org.bimserver.models.store.ModelCheckerResultLine#getFieldOrClass Field Or Class}' attribute. * * * @param value the new value of the 'Field Or Class' attribute. * @see #getFieldOrClass() * @generated */ void setFieldOrClass(String value); /** * Returns the value of the 'Value' attribute. * *

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

* * @return the value of the 'Value' attribute. * @see #setValue(String) * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.bimserver.models.store.ModelCheckerResultLine#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * Returns the value of the 'Should Be' attribute. * *

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

* * @return the value of the 'Should Be' attribute. * @see #setShouldBe(String) * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine_ShouldBe() * @model * @generated */ String getShouldBe(); /** * Sets the value of the '{@link org.bimserver.models.store.ModelCheckerResultLine#getShouldBe Should Be}' attribute. * * * @param value the new value of the 'Should Be' attribute. * @see #getShouldBe() * @generated */ void setShouldBe(String value); /** * Returns the value of the 'Type' attribute. * The literals are from the enumeration {@link org.bimserver.models.store.ModelCheckerResultType}. * *

* 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.ModelCheckerResultType * @see #setType(ModelCheckerResultType) * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine_Type() * @model * @generated */ ModelCheckerResultType getType(); /** * Sets the value of the '{@link org.bimserver.models.store.ModelCheckerResultLine#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see org.bimserver.models.store.ModelCheckerResultType * @see #getType() * @generated */ void setType(ModelCheckerResultType value); /** * Returns the value of the 'Object Id' attribute. * *

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

* * @return the value of the 'Object Id' attribute. * @see #setObjectId(long) * @see org.bimserver.models.store.StorePackage#getModelCheckerResultLine_ObjectId() * @model * @generated */ long getObjectId(); /** * Sets the value of the '{@link org.bimserver.models.store.ModelCheckerResultLine#getObjectId Object Id}' attribute. * * * @param value the new value of the 'Object Id' attribute. * @see #getObjectId() * @generated */ void setObjectId(long value); } // ModelCheckerResultLine




© 2015 - 2024 Weber Informatics LLC | Privacy Policy