/** * Generated with Acceleo */ package org.eclipse.emf.ecoretools.design.properties.parts; // Start of user code for imports // End of user code /** * * */ public interface EEnumLiteralPropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the value * */ public String getValue(); /** * Defines a new value * @param newValue the new value to set * */ public void setValue(String newValue); /** * @return the literal * */ public String getLiteral(); /** * Defines a new literal * @param newValue the new literal to set * */ public void setLiteral(String 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 }