vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
34 lines • 1.81 kB
TypeScript
import { BaseLanguageHandler } from './base.js';
import { SyntaxNode } from '../parser.js';
import { FunctionExtractionOptions } from '../types.js';
import { ImportedItem } from '../codeMapModel.js';
export declare class JavaHandler extends BaseLanguageHandler {
protected getFunctionQueryPatterns(): string[];
protected getClassQueryPatterns(): string[];
protected getImportQueryPatterns(): string[];
protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string;
private findClassName;
private getMethodAnnotations;
private isAndroidLifecycleMethod;
protected extractClassName(node: SyntaxNode, sourceCode: string): string;
protected extractParentClass(node: SyntaxNode, sourceCode: string): string | undefined;
protected extractImplementedInterfaces(node: SyntaxNode, sourceCode: string): string[] | undefined;
protected extractImportPath(node: SyntaxNode, sourceCode: string): string;
protected isDefaultImport(node: SyntaxNode, _sourceCode: string): boolean | undefined;
protected extractImportedItems(node: SyntaxNode, sourceCode: string): ImportedItem[] | undefined;
protected extractClassProperties(node: SyntaxNode, _sourceCode: string): Array<{
name: string;
type?: string;
comment?: string;
startLine: number;
endLine: number;
accessModifier?: string;
isStatic?: boolean;
}>;
private extractPropertyComment;
protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined;
protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined;
private parseJavadocComment;
detectFramework(sourceCode: string): string | null;
}
//# sourceMappingURL=java.d.ts.map