org.bimserver.models.log.LogAction 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
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.log;
import java.util.Date;
import org.bimserver.emf.IdEObject;
import org.bimserver.models.store.User;
/**
*
* A representation of the model object 'Action'.
*
*
*
* The following features are supported:
*
*
* - {@link org.bimserver.models.log.LogAction#getDate Date}
* - {@link org.bimserver.models.log.LogAction#getExecutor Executor}
* - {@link org.bimserver.models.log.LogAction#getAccessMethod Access Method}
*
*
* @see org.bimserver.models.log.LogPackage#getLogAction()
* @model
* @extends IdEObject
* @generated
*/
public interface LogAction extends IdEObject {
/**
* 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.log.LogPackage#getLogAction_Date()
* @model
* @generated
*/
Date getDate();
/**
* Sets the value of the '{@link org.bimserver.models.log.LogAction#getDate Date}' attribute.
*
*
* @param value the new value of the 'Date' attribute.
* @see #getDate()
* @generated
*/
void setDate(Date value);
/**
* Returns the value of the 'Executor' reference.
*
*
* If the meaning of the 'Executor' reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Executor' reference.
* @see #setExecutor(User)
* @see org.bimserver.models.log.LogPackage#getLogAction_Executor()
* @model
* @generated
*/
User getExecutor();
/**
* Sets the value of the '{@link org.bimserver.models.log.LogAction#getExecutor Executor}' reference.
*
*
* @param value the new value of the 'Executor' reference.
* @see #getExecutor()
* @generated
*/
void setExecutor(User value);
/**
* Returns the value of the 'Access Method' attribute.
* The literals are from the enumeration {@link org.bimserver.models.log.AccessMethod}.
*
*
* If the meaning of the 'Access Method' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Access Method' attribute.
* @see org.bimserver.models.log.AccessMethod
* @see #setAccessMethod(AccessMethod)
* @see org.bimserver.models.log.LogPackage#getLogAction_AccessMethod()
* @model
* @generated
*/
AccessMethod getAccessMethod();
/**
* Sets the value of the '{@link org.bimserver.models.log.LogAction#getAccessMethod Access Method}' attribute.
*
*
* @param value the new value of the 'Access Method' attribute.
* @see org.bimserver.models.log.AccessMethod
* @see #getAccessMethod()
* @generated
*/
void setAccessMethod(AccessMethod value);
} // LogAction
© 2015 - 2025 Weber Informatics LLC | Privacy Policy