Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-dev] how to create line comment with ICompilationUnit?

I find the sample docs of eclipse rcp developments is insufficient,now i want to create a line comment in a method,as we know that from ICompliationUnit,we can get MethodDelaration,Block etc. ASTNode

public void foo() {
 
//this is what i expected line comment with ASTNode generation
}

Back to the top