1 22 23 package org.xquark.schema; 24 25 public class AllModelGroup extends ModelGroup { 26 private static final String RCSRevision = "$Revision: 1.1 $"; 27 private static final String RCSName = "$Name: $"; 28 29 public AllModelGroup() { 30 super(ModelGroup.ALL); 31 } 32 33 public void accept(SchemaVisitor visitor) throws SchemaException { 34 visitor.visit(this); 35 } 36 } 37 | Popular Tags |