blob: 7c96634691cd308cf675a33c403da3350c836456 [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation and others.
* 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:
* IBM - initial API and implementation
*
* $Id: GenClass.java,v 1.11 2006/03/01 17:57:18 khussey Exp $
*/
package org.eclipse.uml2.codegen.ecore.genmodel;
import java.util.List;
import org.eclipse.emf.codegen.ecore.genmodel.GenFeature;
import org.eclipse.emf.codegen.ecore.genmodel.GenOperation;
import org.eclipse.emf.ecore.EOperation;
import org.eclipse.emf.ecore.EStructuralFeature;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Gen Class</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.uml2.codegen.ecore.genmodel.GenModelPackage#getGenClass()
* @model
* @generated
*/
public interface GenClass
extends org.eclipse.emf.codegen.ecore.genmodel.GenClass, GenClassifier {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "Copyright (c) IBM Corporation and others."; //$NON-NLS-1$
String getOperationsClassName();
String getImportedOperationsClassName();
String getQualifiedOperationsClassName();
String getOperationsClassExtends();
List/* GenFeature */getKeyGenFeatures();
List/* GenFeature */getKeyGenFeatures(boolean includeContains);
boolean isFactoryMethods(GenFeature genFeature);
GenFeature findGenFeature(EStructuralFeature ecoreFeature);
GenOperation findGenOperation(EOperation ecoreOperation);
List/* GenFeature */getDuplicateGenFeatures();
List/* GenOperation */getDuplicateGenOperations();
boolean isDerivedUnionListType(GenFeature genFeature);
List/* GenFeature */getUnionGenFeatures();
List/* GenFeature */getImplementedUnionGenFeatures();
List/* GenFeature */getSubsetGenFeatures();
List/* GenFeature */getImplementedSubsetGenFeatures();
List/* GenFeature */getImplementedSubsetGenFeatures(boolean listType);
List/* GenFeature */getSupersetGenFeatures(GenFeature subsetGenFeature);
List/* GenFeature */getSupersetGenFeatures(GenFeature subsetGenFeature,
boolean includeDerived, boolean includeListType);
String getSupersetFeatureAccessorArray(GenFeature subsetGenFeature);
boolean isSuperset(GenFeature genFeature);
List/* GenFeature */getSupersetGenFeatures();
List/* GenFeature */getImplementedSupersetGenFeatures();
List/* GenFeature */getImplementedSupersetGenFeatures(boolean listType);
List/* GenFeature */getSubsetGenFeatures(GenFeature supersetGenFeature);
List/* GenFeature */getSubsetGenFeatures(GenFeature supersetGenFeature,
boolean includeDerived, boolean includeListType);
List/* GenFeature */getIsSetSubsetGenFeatures(GenFeature unionGenFeature);
String getSubsetFeatureAccessorArray(GenFeature supersetGenFeature);
boolean isRedefined(GenFeature genFeature);
List/* GenFeature */getRedefinedGenFeatures();
List/* GenFeature */getImplementedRedefinedGenFeatures();
List/* GenFeature */getRedefinitionGenFeatures(
GenFeature redefinedGenFeature);
boolean isRedefined(GenOperation genOperation);
List/* GenOperation */getRedefinedGenOperations();
List/* GenOperation */getImplementedRedefinedGenOperations();
List/* GenFeature */getRedefinitionGenOperations(
GenOperation redefinedGenOperation);
GenOperation getImplementedCollidingGetGenOperation(GenFeature genFeature);
GenOperation getImplementedCollidingSetGenOperation(GenFeature genFeature);
GenOperation getImplementedCollidingIsSetGenOperation(GenFeature genFeature);
GenOperation getImplementedCollidingUnsetGenOperation(GenFeature genFeature);
} // GenClass