blob: 8fb537de151dbc0c15264410b642072b9ca90f4d [file] [log] [blame]
/* 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
// ----------------------------------------------------------------------------