/** * */ package com.sap.furcas.metamodel.FURCAS.TCS.stubs; import org.eclipse.emf.ecore.EClass; import junit.framework.Assert; import com.sap.furcas.metamodel.FURCAS.TCS.InjectorActionsBlock; import com.sap.furcas.metamodel.FURCAS.TCS.LookupPropertyInit; import com.sap.furcas.metamodel.FURCAS.TCS.PropertyReference; import com.sap.furcas.metamodel.FURCAS.TCS.TCSPackage; /** * */ public class LookupPropertyInitStub extends LocatedElementStub implements LookupPropertyInit { public PropertyReference reference; public String value; public Boolean isDefault; /* * (non-Javadoc) * * @see tcs.PropertyInit#getPropertyReference() */ @Override public PropertyReference getPropertyReference() { return reference; } /* * (non-Javadoc) * * @see tcs.PropertyInit#getValue() */ @Override public String getValue() { return value; } /* * (non-Javadoc) * * @see tcs.PropertyInit#setPropertyReference(tcs.PropertyReference) */ @Override public void setPropertyReference(PropertyReference newValue) { Assert.fail("not implemented."); } /* * (non-Javadoc) * * @see tcs.PropertyInit#setValue(java.lang.String) */ @Override public void setValue(String newValue) { Assert.fail("not implemented."); } @Override public InjectorActionsBlock getInjectorActionsBlock() { Assert.fail("not implemented."); return null; } @Override public void setInjectorActionsBlock(InjectorActionsBlock value) { Assert.fail("not implemented."); } @Override public boolean isDefault() { Assert.fail("not implemented."); return false; } @Override public void setDefault(boolean value) { Assert.fail("not implemented."); } @Override public EClass eClass() { return TCSPackage.eINSTANCE.getLookupPropertyInit(); } }