Get the first syntactic item of a given kind which refers to this item. @param kind @return
(Class<T> kind)
| 72 | * @return |
| 73 | */ |
| 74 | @Override |
| 75 | public <T extends Item> T getParent(Class<T> kind) { |
| 76 | return parent.getParent(this, kind); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Get all syntactic items of a given kind which refer to this item. |