• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2  *
3  * This program and the accompanying materials are made available under
4  * the terms of the Common Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
6  *
7  * $Id: IMetadataConstants.java,v 1.1.1.1 2004/05/09 16:57:31 vlad_r Exp $
8  */
9 package com.vladium.emma.data;
10 
11 // ----------------------------------------------------------------------------
12 /**
13  * @author Vlad Roubtsov, 2003
14  */
15 public
16 interface IMetadataConstants
17 {
18     // public: ................................................................
19 
20     int METHOD_NO_LINE_NUMBER_TABLE = 0x01;
21     int METHOD_ABSTRACT_OR_NATIVE   = 0x02;
22     int METHOD_EXCLUDED             = 0x04;
23     int METHOD_ADDED                = 0x08;
24 
25     int METHOD_NO_BLOCK_DATA = (METHOD_ABSTRACT_OR_NATIVE | METHOD_EXCLUDED | METHOD_ADDED);
26     int METHOD_NO_LINE_DATA = (METHOD_NO_LINE_NUMBER_TABLE | METHOD_NO_BLOCK_DATA);
27 
28 
29 } // end of interface
30 // ----------------------------------------------------------------------------