我使用 eclipse 并且当我编写这段代码时
for (Property property : properties)
{
property.getType();
并使用CTRL+1
我得到这个有效的建议
IPropertyTypeU type = property.getType();
但是我想使用特定的演员表
SimpleType simpletype = ((SimpleTypeU) property).getSimpleType();
我在使用 where used 选项 (CTRL+SHIFT+G) 时发现了这个选项
- 有更方便的方法吗?
- 有一种简单的方法可以查看谁是从特定接口扩展的,例如,如果我单击 IPropertyTypeU 我会看到他扩展的所有类/接口,但是我怎么能很容易地知道 SimpleType 扩展了 IPropertyTypeU ?