summaryrefslogtreecommitdiff
path: root/core/java12/com/vladium/emma/data/IMetadataConstants.java
blob: 8fb537de151dbc0c15264410b642072b9ca90f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
 * 
 * This program and the accompanying materials are made available under
 * the terms of the Common Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/cpl-v10.html
 * 
 * $Id: IMetadataConstants.java,v 1.1.1.1 2004/05/09 16:57:31 vlad_r Exp $
 */
package com.vladium.emma.data;

// ----------------------------------------------------------------------------
/**
 * @author Vlad Roubtsov, 2003
 */
public
interface IMetadataConstants
{
    // public: ................................................................
    
    int METHOD_NO_LINE_NUMBER_TABLE = 0x01;
    int METHOD_ABSTRACT_OR_NATIVE   = 0x02;
    int METHOD_EXCLUDED             = 0x04;
    int METHOD_ADDED                = 0x08;
    
    int METHOD_NO_BLOCK_DATA = (METHOD_ABSTRACT_OR_NATIVE | METHOD_EXCLUDED | METHOD_ADDED);
    int METHOD_NO_LINE_DATA = (METHOD_NO_LINE_NUMBER_TABLE | METHOD_NO_BLOCK_DATA);
    

} // end of interface
// ----------------------------------------------------------------------------