1 7 package org.enhydra.dods.editor.Doml; 8 9 import org.eclipse.emf.common.util.EMap; 10 11 import org.eclipse.emf.ecore.EObject; 12 13 import org.eclipse.emf.ecore.util.FeatureMap; 14 15 42 public interface DocumentRoot extends EObject { 43 57 FeatureMap getMixed(); 58 59 74 EMap getXMLNSPrefixMap(); 75 76 91 EMap getXSISchemaLocation(); 92 93 107 ColumnType getColumn(); 108 109 117 void setColumn(ColumnType value); 118 119 133 DatabaseType getDatabase(); 134 135 143 void setDatabase(DatabaseType value); 144 145 158 DomlType getDoml(); 159 160 168 void setDoml(DomlType value); 169 170 184 IndexType getIndex(); 185 186 194 void setIndex(IndexType value); 195 196 210 IndexColumnType getIndexColumn(); 211 212 220 void setIndexColumn(IndexColumnType value); 221 222 236 PackageType getPackage(); 237 238 246 void setPackage(PackageType value); 247 248 262 ReferenceObjectType getReferenceObject(); 263 264 272 void setReferenceObject(ReferenceObjectType value); 273 274 288 TableType getTable(); 289 290 298 void setTable(TableType value); 299 300 314 TypeType getType(); 315 316 324 void setType(TypeType value); 325 326 } | Popular Tags |