package org.whole.lang.xsd.model.adapters; import org.whole.lang.model.adapters.AbstractCollectionEntityAdapter; import org.whole.lang.xsd.model.*; import org.whole.lang.model.IEntity; import org.whole.lang.xsd.visitors.IXsdVisitor; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.xsd.reflect.XsdEntityDescriptorEnum; /** * @generator Whole */ public class DerivationListAdapter extends AbstractCollectionEntityAdapter<DerivationControl> implements DerivationList { private static final long serialVersionUID = 1; public DerivationListAdapter(IEntity implementor) { super(implementor); } public DerivationListAdapter() { } public void accept(IXsdVisitor visitor) { if (visitor.visitAdapter(this)) visitor.visit(this); } public EntityDescriptor<DerivationList> wGetEntityDescriptor() { return XsdEntityDescriptorEnum.DerivationList; } }