package org.whole.lang.frames.visitors; import org.whole.lang.frames.model.*; import org.whole.lang.model.adapters.IEntityAdapter; import org.whole.lang.visitors.VisitException; /** * @generator Whole */ public class FramesFailureVisitor extends FramesIdentityVisitor { public boolean visitAdapter(IEntityAdapter entity) { throw new VisitException(); } public void visit(Frame entity) { throw new VisitException(); } public void visit(Variants entity) { throw new VisitException(); } public void visit(Empty entity) { throw new VisitException(); } public void visit(Proceed entity) { throw new VisitException(); } public void visit(InlineContent entity) { throw new VisitException(); } public void visit(JoinPoint entity) { throw new VisitException(); } public void visit(ConditionPoint entity) { throw new VisitException(); } public void visit(IterationPoint entity) { throw new VisitException(); } public void visit(SelectionPoint entity) { throw new VisitException(); } public void visit(ReusePoint entity) { throw new VisitException(); } public void visit(IncludePoint entity) { throw new VisitException(); } public void visit(Relations entity) { throw new VisitException(); } public void visit(Pointcut entity) { throw new VisitException(); } public void visit(Require entity) { throw new VisitException(); } public void visit(Exclude entity) { throw new VisitException(); } public void visit(MutuallyRequire entity) { throw new VisitException(); } public void visit(MutuallyExclude entity) { throw new VisitException(); } public void visit(FeatureNames entity) { throw new VisitException(); } public void visit(Advices entity) { throw new VisitException(); } public void visit(Before entity) { throw new VisitException(); } public void visit(After entity) { throw new VisitException(); } public void visit(Into entity) { throw new VisitException(); } public void visit(Around entity) { throw new VisitException(); } public void visit(Features entity) { throw new VisitException(); } public void visit(Subfeatures entity) { throw new VisitException(); } public void visit(VariableFeatures entity) { throw new VisitException(); } public void visit(SolitaryFeatures entity) { throw new VisitException(); } public void visit(SubsetGroup entity) { throw new VisitException(); } public void visit(CloneGroup entity) { throw new VisitException(); } public void visit(VariableFeature entity) { throw new VisitException(); } public void visit(Feature entity) { throw new VisitException(); } public void visit(Attribute entity) { throw new VisitException(); } public void visit(FeatureReference entity) { throw new VisitException(); } public void visit(FeatureRename entity) { throw new VisitException(); } public void visit(EntityType entity) { throw new VisitException(); } public void visit(Domain entity) { throw new VisitException(); } public void visit(VariableValue entity) { throw new VisitException(); } public void visit(Resources entity) { throw new VisitException(); } public void visit(Resource entity) { throw new VisitException(); } public void visit(WorkspacePath entity) { throw new VisitException(); } public void visit(FileSystemPath entity) { throw new VisitException(); } public void visit(URL entity) { throw new VisitException(); } public void visit(PersistenceId entity) { throw new VisitException(); } public void visit(BooleanValue entity) { throw new VisitException(); } public void visit(ByteValue entity) { throw new VisitException(); } public void visit(ShortValue entity) { throw new VisitException(); } public void visit(IntValue entity) { throw new VisitException(); } public void visit(LongValue entity) { throw new VisitException(); } public void visit(FloatValue entity) { throw new VisitException(); } public void visit(DoubleValue entity) { throw new VisitException(); } public void visit(CharValue entity) { throw new VisitException(); } public void visit(StringValue entity) { throw new VisitException(); } public void visit(FeatureName entity) { throw new VisitException(); } public void visit(FeatureValue entity) { throw new VisitException(); } public void visit(URI entity) { throw new VisitException(); } public void visit(Namespace entity) { throw new VisitException(); } public void visit(Name entity) { throw new VisitException(); } public void visit(Version entity) { throw new VisitException(); } public void visit(Cardinality entity) { throw new VisitException(); } public void visit(Annotations entity) { throw new VisitException(); } public void visit(Description entity) { throw new VisitException(); } public void visit(Categories entity) { throw new VisitException(); } public void visit(Stakeholders entity) { throw new VisitException(); } public void visit(Priority entity) { throw new VisitException(); } public void visit(BindingTime entity) { throw new VisitException(); } public void visit(CustomAnnotation entity) { throw new VisitException(); } }