代码搜索:Component
找到约 10,000 项符合「Component」的源代码
代码结果 10,000
www.eeworm.com/read/373842/2757463
java component.java
/**
* The top abstract where concrete component and decorator
* should be derived from
*/
public interface Component {
public abstract void PrintString(String s);
}