/** * Generated with Acceleo */ package org.eclipse.emf.ecoretools.design.properties.parts; // Start of user code for imports // End of user code /** * * */ public interface DataTypePropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the serializable * */ public Boolean getSerializable(); /** * Defines a new serializable * @param newValue the new serializable to set * */ public void setSerializable(Boolean newValue); /** * Returns the internationalized title text. * * @return the internationalized title text. * */ public String getTitle(); // Start of user code for additional methods // End of user code }