package org.whole.lang.workflows.model.adapters; import org.whole.lang.model.adapters.AbstractEntityAdapter; import org.whole.lang.workflows.model.*; import org.whole.lang.model.IEntity; import org.whole.lang.workflows.visitors.IWorkflowsVisitor; import org.whole.lang.reflect.EntityDescriptor; import org.whole.lang.workflows.reflect.WorkflowsEntityDescriptorEnum; /** * @generator Whole */ public class DeclarationAdapter extends AbstractEntityAdapter implements Declaration { private static final long serialVersionUID = 1; public DeclarationAdapter(IEntity implementor) { super(implementor); } public DeclarationAdapter() { } public void accept(IWorkflowsVisitor visitor) { if (visitor.visitAdapter(this)) visitor.visit(this); } public EntityDescriptor<Declaration> wGetEntityDescriptor() { return WorkflowsEntityDescriptorEnum.Declaration; } }