1 10 package org.jgap.data; 11 12 import java.util.*; 13 14 21 public interface IDataElement { 22 23 final static String CVS_REVISION = "$Revision: 1.3 $"; 24 25 void setAttribute(String a_name, String a_value) 26 throws Exception ; 27 28 void appendChild(IDataElement a_newChild) 29 throws Exception ; 30 31 String getTagName(); 32 33 IDataElementList getElementsByTagName(String a_name); 34 35 IDataElementList getChildNodes(); 36 37 String getAttribute(String a_name); 38 39 Map getAttributes(); 40 } 41 | Popular Tags |