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

org.bimserver.models.store.impl.SerializerPluginConfigurationImpl Maven / Gradle / Ivy

Go to download

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.store.impl;

import org.bimserver.models.store.ObjectIDMPluginConfiguration;
import org.bimserver.models.store.RenderEnginePluginConfiguration;
import org.bimserver.models.store.SerializerPluginConfiguration;
import org.bimserver.models.store.StorePackage;
import org.bimserver.models.store.UserSettings;
import org.eclipse.emf.ecore.EClass;

/**
 * 
 * An implementation of the model object 'Serializer Plugin Configuration'.
 * 
 * 

* The following features are implemented: *

*
    *
  • {@link org.bimserver.models.store.impl.SerializerPluginConfigurationImpl#getObjectIDM Object IDM}
  • *
  • {@link org.bimserver.models.store.impl.SerializerPluginConfigurationImpl#getUserSettings User Settings}
  • *
  • {@link org.bimserver.models.store.impl.SerializerPluginConfigurationImpl#getRenderEngine Render Engine}
  • *
  • {@link org.bimserver.models.store.impl.SerializerPluginConfigurationImpl#isStreaming Streaming}
  • *
* * @generated */ public class SerializerPluginConfigurationImpl extends PluginConfigurationImpl implements SerializerPluginConfiguration { /** * * * @generated */ protected SerializerPluginConfigurationImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION; } /** * * * @generated */ public ObjectIDMPluginConfiguration getObjectIDM() { return (ObjectIDMPluginConfiguration) eGet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__OBJECT_IDM, true); } /** * * * @generated */ public void setObjectIDM(ObjectIDMPluginConfiguration newObjectIDM) { eSet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__OBJECT_IDM, newObjectIDM); } /** * * * @generated */ public UserSettings getUserSettings() { return (UserSettings) eGet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__USER_SETTINGS, true); } /** * * * @generated */ public void setUserSettings(UserSettings newUserSettings) { eSet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__USER_SETTINGS, newUserSettings); } /** * * * @generated */ public RenderEnginePluginConfiguration getRenderEngine() { return (RenderEnginePluginConfiguration) eGet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__RENDER_ENGINE, true); } /** * * * @generated */ public void setRenderEngine(RenderEnginePluginConfiguration newRenderEngine) { eSet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__RENDER_ENGINE, newRenderEngine); } /** * * * @generated */ public boolean isStreaming() { return (Boolean) eGet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__STREAMING, true); } /** * * * @generated */ public void setStreaming(boolean newStreaming) { eSet(StorePackage.Literals.SERIALIZER_PLUGIN_CONFIGURATION__STREAMING, newStreaming); } } //SerializerPluginConfigurationImpl




© 2015 - 2025 Weber Informatics LLC | Privacy Policy