
org.bimserver.models.store.ServiceParameter 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
/**
* 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 'Service Parameter'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.store.ServiceParameter#getName Name}
* - {@link org.bimserver.models.store.ServiceParameter#getDoc Doc}
* - {@link org.bimserver.models.store.ServiceParameter#getType Type}
* - {@link org.bimserver.models.store.ServiceParameter#getGenericType Generic Type}
*
*
* @see org.bimserver.models.store.StorePackage#getServiceParameter()
* @model
* @extends IdEObject
* @generated
*/
public interface ServiceParameter extends IdEObject {
/**
* Returns the value of the 'Name' attribute.
*
*
* If the meaning of the 'Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Name' attribute.
* @see #setName(String)
* @see org.bimserver.models.store.StorePackage#getServiceParameter_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.bimserver.models.store.ServiceParameter#getName Name}' attribute.
*
*
* @param value the new value of the 'Name' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the 'Doc' attribute.
*
*
* If the meaning of the 'Doc' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Doc' attribute.
* @see #setDoc(String)
* @see org.bimserver.models.store.StorePackage#getServiceParameter_Doc()
* @model
* @generated
*/
String getDoc();
/**
* Sets the value of the '{@link org.bimserver.models.store.ServiceParameter#getDoc Doc}' attribute.
*
*
* @param value the new value of the 'Doc' attribute.
* @see #getDoc()
* @generated
*/
void setDoc(String value);
/**
* Returns the value of the 'Type' reference.
*
*
* If the meaning of the 'Type' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Type' reference.
* @see #setType(ServiceType)
* @see org.bimserver.models.store.StorePackage#getServiceParameter_Type()
* @model
* @generated
*/
ServiceType getType();
/**
* Sets the value of the '{@link org.bimserver.models.store.ServiceParameter#getType Type}' reference.
*
*
* @param value the new value of the 'Type' reference.
* @see #getType()
* @generated
*/
void setType(ServiceType value);
/**
* Returns the value of the 'Generic Type' reference.
*
*
* If the meaning of the 'Generic Type' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Generic Type' reference.
* @see #setGenericType(ServiceType)
* @see org.bimserver.models.store.StorePackage#getServiceParameter_GenericType()
* @model
* @generated
*/
ServiceType getGenericType();
/**
* Sets the value of the '{@link org.bimserver.models.store.ServiceParameter#getGenericType Generic Type}' reference.
*
*
* @param value the new value of the 'Generic Type' reference.
* @see #getGenericType()
* @generated
*/
void setGenericType(ServiceType value);
} // ServiceParameter
© 2015 - 2025 Weber Informatics LLC | Privacy Policy