eclipse / lyo.designer

lyo.designer
Eclipse Public License 2.0
11 stars 10 forks source link

Misspelled domain constants #271

Open danlz opened 1 year ago

danlz commented 1 year ago

Lyo generates the following code:

` public interface Oslc_rmDomainConstants { // Start of user code user constants // End of user code

/**
 * @deprecated use {@link Oslc_rmDomainConstants#OSLC_RM_NAMSPACE} or
 *             {@link Oslc_rmDomainConstants#OSLC_RM_DOMAIN_NAME} instead
 */
@Deprecated(since = "5.0.1")
public static String OSLC_RM_DOMAIN = "http://open-services.net/xmlns/rm/1.0/";
public static String OSLC_RM_DOMAIN_NAME = "OSLC_RM";
public static String OSLC_RM_NAMSPACE = "http://open-services.net/xmlns/rm/1.0/"; // Vocabulary namespace for the
                                                                                  // resources and resource
                                                                                  // properties, when no explicit
                                                                                  // vocabulary (describes, or
                                                                                  // propertyDefinition) is defined
public static String OSLC_RM_NAMSPACE_PREFIX = "oslc_rm"; // Vocabulary prefix for the resources and resource
                                                          // properties, when no explicit vocabulary (describes, or
                                                          // propertyDefinition) is defined

`

The OSLC_RM_NAMSPACE and OSLC_RM_NAMSPACE constants are misspelled.