/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as.mopp; public class AsLayoutInformationAdapter implements org.eclipse.emf.common.notify.Adapter { private org.eclipse.emf.common.notify.Notifier target; private java.util.List<org.reuseware.air.language.abstractsyntax.resource.as.mopp.AsLayoutInformation> layoutInformations = new java.util.ArrayList<org.reuseware.air.language.abstractsyntax.resource.as.mopp.AsLayoutInformation>(); public org.eclipse.emf.common.notify.Notifier getTarget() { return target; } public boolean isAdapterForType(java.lang.Object type) { return false; } public void notifyChanged(org.eclipse.emf.common.notify.Notification notification) { } public void setTarget(org.eclipse.emf.common.notify.Notifier newTarget) { this.target = newTarget; } public java.util.List<org.reuseware.air.language.abstractsyntax.resource.as.mopp.AsLayoutInformation> getLayoutInformations() { return layoutInformations; } public void addLayoutInformation(org.reuseware.air.language.abstractsyntax.resource.as.mopp.AsLayoutInformation layoutInformation) { layoutInformations.add(layoutInformation); } public void replaceProxy(org.eclipse.emf.ecore.EObject proxy, org.eclipse.emf.ecore.EObject target) { for (org.reuseware.air.language.abstractsyntax.resource.as.mopp.AsLayoutInformation layoutInformation : layoutInformations) { layoutInformation.replaceProxy(proxy, target); } } }