* This is a factory for type declaration that returns the Aj subclass of typedeclaration.
* @author AndyClement
*/
public class AjTypeDeclFactory implements ITypeDeclFactory {
public TypeDeclaration createTypeFor(AST ast) {
return new AjTypeDeclaration(ast);
}