blob: 16319dc1fcb21b96951bf0713d250ee98811f5c0 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2008 The University of York.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.eol.m3;
public class Reference extends StructuralFeature {
protected boolean isContainment = false;
public void setContainment(boolean contaiment) {
isContainment = contaiment;
}
public boolean isContainment() {
return isContainment;
}
}