alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (EventInfo.java)

This example Scala source code file (EventInfo.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

attributes, empty_array, eventhandlertype, eventhandlertype, eventinfo, eventinfo, getremovemethod, membertype, methodinfo, methodinfo, name, string, type, type

The Scala EventInfo.java source code

/*
 * System.Reflection-like API for access to .NET assemblies (DLL & EXE)
 */


package ch.epfl.lamp.compiler.msil;


/**
 * Discovers the attributes of an event
 * and provides access to event metadata.
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
public class EventInfo extends MemberInfo {

    //##########################################################################

    public final int MemberType() { return MemberTypes.Event; }

    /** Attributes associated with the event. */
    public final short Attributes;

    /** The Type object for the underlying event-handler delegate
     *  associated with this event.
     */
    public final Type EventHandlerType;

    public MethodInfo GetAddMethod() { return addMethod; }

    public MethodInfo GetRemoveMethod() { return removeMethod; }

    public String toString() {
        return "" + EventHandlerType + " " + Name;
    }

    //##########################################################################

    protected static final EventInfo[] EMPTY_ARRAY = new EventInfo[0];

    protected MethodInfo addMethod;

    protected MethodInfo removeMethod;

    protected EventInfo(String name, Type declType, short attr,
                        Type handlerType, MethodInfo add, MethodInfo remove)
    {
        super(name, declType);
        Attributes = attr;
        EventHandlerType = handlerType;
        this.addMethod = add;
        this.removeMethod = remove;
    }

    //##########################################################################

} // class EventInfo

Other Scala examples (source code examples)

Here is a short list of links related to this Scala EventInfo.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.