Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/apache/groovy
/ getPackage
Method
getPackage
src/main/java/org/codehaus/groovy/ast/ClassNode.java:366–368 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
364
}
365
366
public
PackageNode getPackage() {
367
return
Optional.ofNullable(getModule()).map(ModuleNode::getPackage).orElse(null);
368
}
369
370
public
String getPackageName() {
371
int
idx = getName().lastIndexOf(
'.'
);
Callers
14
loadScript
Method · 0.45
getClassProps
Method · 0.45
shortName
Method · 0.45
configureClassNode
Method · 0.45
generateStubContent
Method · 0.45
visitClass
Method · 0.45
classShouldBeIgnored
Method · 0.45
visitClass
Method · 0.45
visitClass
Method · 0.45
visitClass
Method · 0.45
inSamePackage
Method · 0.45
typeName
Method · 0.45
Calls
3
getModule
Method · 0.95
map
Method · 0.65
orElse
Method · 0.45
Tested by
1
loadScript
Method · 0.36