/** * * * * $Id$ */ package org.apache.tuscany.model; import java.util.List; /** * * A representation of the model object 'DAS Meta'. * * *

* The following features are supported: *

*

* * @model * @generated */ public interface DASMeta { /** * Returns the value of the 'Supported Schemas' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Supported Schemas' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Supported Schemas' attribute list. * @model default="localhost" * @generated */ List getSupportedSchemas(); /** * Returns the value of the 'Id' attribute. * The default value is "0". * *

* If the meaning of the 'Id' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Id' attribute. * @see #setId(String) * @model default="0" id="true" * @generated */ String getId(); /** * Sets the value of the '{@link org.apache.tuscany.model.DASMeta#getId Id}' attribute. * * * @param value the new value of the 'Id' attribute. * @see #getId() * @generated */ void setId(String value); } // DASMeta