1 23 package com.sun.enterprise.diagnostics.report.html; 24 25 import java.util.List ; 26 27 28 29 34 public interface Container extends HTMLComponent { 35 36 37 41 public void add(HTMLComponent node); 42 43 44 49 public List <HTMLComponent> children(); 50 51 52 57 public <T extends HTMLComponent> List <T> get(Class <T> type); 58 59 60 66 public void delete(HTMLComponent node); 67 } 68 | Popular Tags |