
org.bimserver.models.store.SystemInfo 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 java.util.Date;
import org.bimserver.emf.IdEObject;
/**
*
* A representation of the model object 'System Info'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.store.SystemInfo#getCpucores Cpucores}
* - {@link org.bimserver.models.store.SystemInfo#getDatetime Datetime}
* - {@link org.bimserver.models.store.SystemInfo#getOsname Osname}
* - {@link org.bimserver.models.store.SystemInfo#getOsversion Osversion}
* - {@link org.bimserver.models.store.SystemInfo#getUserName User Name}
* - {@link org.bimserver.models.store.SystemInfo#getUserHome User Home}
* - {@link org.bimserver.models.store.SystemInfo#getUserDir User Dir}
*
*
* @see org.bimserver.models.store.StorePackage#getSystemInfo()
* @model
* @extends IdEObject
* @generated
*/
public interface SystemInfo extends IdEObject {
/**
* Returns the value of the 'Cpucores' attribute.
*
*
* If the meaning of the 'Cpucores' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Cpucores' attribute.
* @see #setCpucores(int)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_Cpucores()
* @model
* @generated
*/
int getCpucores();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getCpucores Cpucores}' attribute.
*
*
* @param value the new value of the 'Cpucores' attribute.
* @see #getCpucores()
* @generated
*/
void setCpucores(int value);
/**
* Returns the value of the 'Datetime' attribute.
*
*
* If the meaning of the 'Datetime' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Datetime' attribute.
* @see #setDatetime(Date)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_Datetime()
* @model
* @generated
*/
Date getDatetime();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getDatetime Datetime}' attribute.
*
*
* @param value the new value of the 'Datetime' attribute.
* @see #getDatetime()
* @generated
*/
void setDatetime(Date value);
/**
* Returns the value of the 'Osname' attribute.
*
*
* If the meaning of the 'Osname' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Osname' attribute.
* @see #setOsname(String)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_Osname()
* @model
* @generated
*/
String getOsname();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getOsname Osname}' attribute.
*
*
* @param value the new value of the 'Osname' attribute.
* @see #getOsname()
* @generated
*/
void setOsname(String value);
/**
* Returns the value of the 'Osversion' attribute.
*
*
* If the meaning of the 'Osversion' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Osversion' attribute.
* @see #setOsversion(String)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_Osversion()
* @model
* @generated
*/
String getOsversion();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getOsversion Osversion}' attribute.
*
*
* @param value the new value of the 'Osversion' attribute.
* @see #getOsversion()
* @generated
*/
void setOsversion(String value);
/**
* Returns the value of the 'User Name' attribute.
*
*
* If the meaning of the 'User Name' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'User Name' attribute.
* @see #setUserName(String)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_UserName()
* @model
* @generated
*/
String getUserName();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getUserName User Name}' attribute.
*
*
* @param value the new value of the 'User Name' attribute.
* @see #getUserName()
* @generated
*/
void setUserName(String value);
/**
* Returns the value of the 'User Home' attribute.
*
*
* If the meaning of the 'User Home' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'User Home' attribute.
* @see #setUserHome(String)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_UserHome()
* @model
* @generated
*/
String getUserHome();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getUserHome User Home}' attribute.
*
*
* @param value the new value of the 'User Home' attribute.
* @see #getUserHome()
* @generated
*/
void setUserHome(String value);
/**
* Returns the value of the 'User Dir' attribute.
*
*
* If the meaning of the 'User Dir' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'User Dir' attribute.
* @see #setUserDir(String)
* @see org.bimserver.models.store.StorePackage#getSystemInfo_UserDir()
* @model
* @generated
*/
String getUserDir();
/**
* Sets the value of the '{@link org.bimserver.models.store.SystemInfo#getUserDir User Dir}' attribute.
*
*
* @param value the new value of the 'User Dir' attribute.
* @see #getUserDir()
* @generated
*/
void setUserDir(String value);
} // SystemInfo