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

org.bimserver.models.log.impl.LogActionImpl Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

There is a newer version: 2.0.0
Show 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.impl;

import java.util.Date;

import org.bimserver.emf.IdEObjectImpl;
import org.bimserver.models.log.AccessMethod;
import org.bimserver.models.log.LogAction;
import org.bimserver.models.log.LogPackage;
import org.bimserver.models.store.User;
import org.eclipse.emf.ecore.EClass;

/**
 * 
 * An implementation of the model object 'Action'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.bimserver.models.log.impl.LogActionImpl#getDate Date}
  • *
  • {@link org.bimserver.models.log.impl.LogActionImpl#getExecutor Executor}
  • *
  • {@link org.bimserver.models.log.impl.LogActionImpl#getAccessMethod Access Method}
  • *
* * @generated */ public class LogActionImpl extends IdEObjectImpl implements LogAction { /** * * * @generated */ protected LogActionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return LogPackage.Literals.LOG_ACTION; } /** * * * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * * * @generated */ public Date getDate() { return (Date) eGet(LogPackage.Literals.LOG_ACTION__DATE, true); } /** * * * @generated */ public void setDate(Date newDate) { eSet(LogPackage.Literals.LOG_ACTION__DATE, newDate); } /** * * * @generated */ public User getExecutor() { return (User) eGet(LogPackage.Literals.LOG_ACTION__EXECUTOR, true); } /** * * * @generated */ public void setExecutor(User newExecutor) { eSet(LogPackage.Literals.LOG_ACTION__EXECUTOR, newExecutor); } /** * * * @generated */ public AccessMethod getAccessMethod() { return (AccessMethod) eGet(LogPackage.Literals.LOG_ACTION__ACCESS_METHOD, true); } /** * * * @generated */ public void setAccessMethod(AccessMethod newAccessMethod) { eSet(LogPackage.Literals.LOG_ACTION__ACCESS_METHOD, newAccessMethod); } } //LogActionImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy