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

Scala example source code file (EventAttributes.java)

This example Scala source code file (EventAttributes.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

eventattributes, eventattributes, none, none, reservedmask, rtspecialname, rtspecialname, specialname, specialname

The Scala EventAttributes.java source code

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


package ch.epfl.lamp.compiler.msil;

/**
 * Specifies flags that describe the attributes of a an event.
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
public final class EventAttributes {

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

    /** Specifies that the event has no attributes. */
    public static final short None = 0x000;

    /** Specifies a reserved flag for CLR use only. */
    public static final short ReservedMask = 0x0400;

    /** Specifies that the event is special in a way described by the name. */
    public static final short SpecialName = 0x0200;

    /** Specifies the the CLR should check name encoding. */
    public static final short RTSpecialName = 0x0400;

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

} // class EventAttributes

Other Scala examples (source code examples)

Here is a short list of links related to this Scala EventAttributes.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.