/** * <copyright> * </copyright> * * */ package ssl.resource.ssl.mopp; public class SslLayoutInformationAdapter implements org.eclipse.emf.common.notify.Adapter { private org.eclipse.emf.common.notify.Notifier target; private java.util.List<ssl.resource.ssl.mopp.SslLayoutInformation> layoutInformations = new java.util.ArrayList<ssl.resource.ssl.mopp.SslLayoutInformation>(); public org.eclipse.emf.common.notify.Notifier getTarget() { return target; } public boolean isAdapterForType(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<ssl.resource.ssl.mopp.SslLayoutInformation> getLayoutInformations() { return layoutInformations; } public void addLayoutInformation(ssl.resource.ssl.mopp.SslLayoutInformation layoutInformation) { layoutInformations.add(layoutInformation); } public void replaceProxy(org.eclipse.emf.ecore.EObject proxy, org.eclipse.emf.ecore.EObject target) { for (ssl.resource.ssl.mopp.SslLayoutInformation layoutInformation : layoutInformations) { layoutInformation.replaceProxy(proxy, target); } } }