1 23 24 30 31 package com.sun.jdo.spi.persistence.support.sqlstore.sql.constraint; 32 33 34 36 public class ConstraintNode extends Object { 37 public static final int PROP_FALSE = 0; 38 39 public static final int PROP_TRUE = 1; 40 41 public static final int PROP_UNKNOWN = -1; 42 43 public int hasProperty(int propertyKey) { 44 return PROP_UNKNOWN; 45 } 46 } 47 | Popular Tags |