We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329f156 commit c2fa8bfCopy full SHA for c2fa8bf
cldk/models/java/models.py
@@ -363,11 +363,15 @@ class JCompilationUnit(BaseModel):
363
"""Represents a compilation unit in Java.
364
365
Attributes:
366
+ file_path (str): The path to the source file.
367
+ package_name (str): The name of the package for the comppilation unit.
368
comments (List[JComment]): A list of comments in the compilation unit.
369
imports (List[str]): A list of import statements in the compilation unit.
370
type_declarations (Dict[str, JType]): A dictionary mapping type names to their corresponding JType representations.
371
"""
372
373
+ file_path: str
374
+ package_name: str
375
comments: List[JComment]
376
imports: List[str]
377
type_declarations: Dict[str, JType]
0 commit comments