/** * Generated with Acceleo */ package org.obeonetwork.dsl.database.parts; // Start of user code for imports // End of user code /** * * */ public interface ViewPropertiesEditionPart { /** * @return the name * */ public String getName(); /** * Defines a new name * @param newValue the new name to set * */ public void setName(String newValue); /** * @return the query * */ public String getQuery(); /** * Defines a new query * @param newValue the new query to set * */ public void setQuery(String newValue); /** * @return the comments * */ public String getComments(); /** * Defines a new comments * @param newValue the new comments to set * */ public void setComments(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 }