blob: f6550df1f647e723a142e99135b4b71d64153a91 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.data.model.editor.model;
/**
* @author Roberto E. Escobar
*/
public class InheritanceLinkModel extends ConnectionModel<ArtifactDataType> {
public InheritanceLinkModel() {
super();
}
public InheritanceLinkModel(ArtifactDataType source, ArtifactDataType target) {
super(source, target);
}
}