blob: bdb6e84b2f3d536a16790b1432577582a6fa7428 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.core.common.model.core.util;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.osbp.ecview.core.common.model.core.YEditable;
import org.eclipse.osbp.ecview.core.common.model.core.YEmbeddable;
import org.eclipse.osbp.ecview.core.common.model.core.YEnable;
import org.eclipse.osbp.ecview.core.common.model.core.YVisibleable;
public class CoreModelUtil {
/**
* Initializes the transient values.
*
* @param yEmbeddable
*/
public static void initTransientValues(YEmbeddable yEmbeddable) {
if (yEmbeddable instanceof YEditable) {
((YEditable) yEmbeddable).setEditable(((YEditable) yEmbeddable)
.isInitialEditable());
}
if (yEmbeddable instanceof YEnable) {
((YEnable) yEmbeddable).setEnabled(((YEnable) yEmbeddable)
.isInitialEnabled());
}
if (yEmbeddable instanceof YVisibleable) {
((YVisibleable) yEmbeddable)
.setVisible(((YVisibleable) yEmbeddable).isInitialVisible());
}
}
/**
* Casts the given object to EObject.
*
* @param object
* @return
*/
public static EObject castEObject(Object object) {
return (EObject) object;
}
}