Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラスを拡張してインターフェースを実装するクラスを必要とする GWT でコンポジットを作成したいと考えています。以下のような疑似コード (明らかに動作しません):
class GridRow<T extends Widget implements HasText> extends Composite{ //more codes here }
それは次のように書かれています:
class GridRow<T extends Widget & HasText> extends Composite { // ... }
[class or interface]( & [interface])*(疑似正規表現言語で)持つことができます。
[class or interface]( & [interface])*