All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nedap.archie.rminfo.ModelNamingStrategy Maven / Gradle / Ivy

package com.nedap.archie.rminfo;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

/**
 * Naming strategy for models. Default implementation exists for the Archie Reference Model implementation.
 *
 * Other implementations can be made for other reference model implementations.
 *
 * Created by pieter.bos on 26/03/16.
 */
public interface ModelNamingStrategy {

    String getAttributeName(Method method);
    String getAttributeName(Field field);
    String getTypeName(Class clazz);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy