X Tutup
package mymodel; import org.eclipse.emf.ecore.EObject; /** * @model */ public interface IPerson extends EObject { /** * @model default=""; */ public String getLastname(); /** * Sets the value of the '{@link mymodel.IPerson#getLastname Lastname}' attribute. * * * @param value the new value of the 'Lastname' attribute. * @see #getLastname() * @generated */ void setLastname(String value); }
X Tutup