fabil.extension
Interface ClassMemberExt

All Superinterfaces:
FabILExt
All Known Implementing Classes:
ClassDeclExt_c, ClassMemberExt_c, ConstructorDeclExt_c, FieldDeclExt_c, InitializerExt_c, MethodDeclExt_c

public interface ClassMemberExt
extends FabILExt


Method Summary
 java.util.List<ClassMember> implMember(ProxyRewriter pr, ClassDecl parent)
          Returns the _Impl translation of the class member.
 java.util.List<ClassMember> interfaceMember(ProxyRewriter pr, ClassDecl parent)
          Returns the interface translation of the class member.
 java.util.List<ClassMember> proxyMember(ProxyRewriter pr, ClassDecl parent)
          Returns the _Proxy translation of the class member.
 java.util.List<Stmt> staticImplInitMember(ProxyRewriter pr)
          Returns the _Static._Impl.$init translation of the class member.
 java.util.List<ClassMember> staticImplMember(ProxyRewriter pr, ClassDecl classDecl)
          Returns the _Static._Impl translation of the class member.
 java.util.List<ClassMember> staticInterfaceMember(ProxyRewriter pr, ClassDecl classDecl)
          Returns the _Static-interface translation of the class member.
 java.util.List<ClassMember> staticProxyMember(ProxyRewriter pr, ClassDecl classDecl)
          Returns the _Static._Proxy translation of the class member.
 
Methods inherited from interface fabil.extension.FabILExt
assignLabels, assignLocations, collectStaticInitializers, rewriteAtomic, rewriteProxies, rewriteProxiesOverride, rewriteRemoteCalls, rewriteThreads
 

Method Detail

proxyMember

java.util.List<ClassMember> proxyMember(ProxyRewriter pr,
                                        ClassDecl parent)
Returns the _Proxy translation of the class member. The result is a list of class members to be included in the _Proxy class.


interfaceMember

java.util.List<ClassMember> interfaceMember(ProxyRewriter pr,
                                            ClassDecl parent)
Returns the interface translation of the class member. The result is a list of class members to be included in the interface.


implMember

java.util.List<ClassMember> implMember(ProxyRewriter pr,
                                       ClassDecl parent)
Returns the _Impl translation of the class member. The result is a list of class members to be included in the _Impl class.


staticInterfaceMember

java.util.List<ClassMember> staticInterfaceMember(ProxyRewriter pr,
                                                  ClassDecl classDecl)
Returns the _Static-interface translation of the class member. The result is a list of class members to be included in the _Static interface.


staticProxyMember

java.util.List<ClassMember> staticProxyMember(ProxyRewriter pr,
                                              ClassDecl classDecl)
Returns the _Static._Proxy translation of the class member. The result is a list of class members to be included in the _Static._Proxy class.


staticImplMember

java.util.List<ClassMember> staticImplMember(ProxyRewriter pr,
                                             ClassDecl classDecl)
Returns the _Static._Impl translation of the class member. The result is a list of class members to be included in the _Static._Impl class.


staticImplInitMember

java.util.List<Stmt> staticImplInitMember(ProxyRewriter pr)
Returns the _Static._Impl.$init translation of the class member. The result is a list of statements to be included in the _Static._Impl.$init method.