Skip to content

Commit

Permalink
added a constant for untyped atoms
Browse files Browse the repository at this point in the history
Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
Stefan Kuhn authored and rajarshi committed Nov 29, 2009
1 parent c8ec6e0 commit a51c932
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/org/openscience/cdk/CDKConstants.java
Expand Up @@ -165,10 +165,14 @@ public class CDKConstants {
* It is used for example in reaction.
*/
public static final int REACTIVE_CENTER = 10;
/** Flag is set if a chemobject has reactive center.
* It is used for example in reaction.
*/
public static final int IS_TYPEABLE = 11;
/**
* Maximum flags array index.
*/
public final static int MAX_FLAG_INDEX = 10;
public final static int MAX_FLAG_INDEX = 11;
/**
* Flag used for JUnit testing the pointer functionality.
*/
Expand Down

0 comments on commit a51c932

Please sign in to comment.