mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 23:04:57 +07:00
c642b9a580
GitOrigin-RevId: acf0c175cda663c43d5feb5b503ed462c5acf92d
12 lines
298 B
Java
12 lines
298 B
Java
// "Insert '(NodeInfo)parent' declaration" "true-preview"
|
|
public abstract class A {
|
|
public void getNodeElements(Object parent) {
|
|
if (!(parent instanceof NodeInfo)) return;
|
|
NodeInfo nodeInfo = (NodeInfo) parent;
|
|
<caret>
|
|
}
|
|
|
|
private static class NodeInfo {
|
|
}
|
|
}
|