1 23 24 package org.objectweb.jorm.metainfo.api; 25 26 import java.util.Map ; 27 28 33 public interface NameRef extends MetaObject { 34 39 void addProjection(String namefield, String classfield); 40 41 45 Map getProjection(); 46 47 52 String getClassFieldName(String fieldName); 53 54 58 String getName(); 59 60 64 CompositeName getCompositeName(); 65 66 72 boolean equalCNType(Object obj); 73 74 77 String getCNPackageName(); 78 } 79 | Popular Tags |