1 23 24 28 29 package com.sun.enterprise.tools.common.validation; 30 31 import org.netbeans.modules.schema2beans.BaseProperty; 32 33 39 public interface Constants { 40 41 int MANDATORY_ELEMENT = BaseProperty.INSTANCE_MANDATORY_ELT; 42 43 int MANDATORY_ARRAY = BaseProperty.INSTANCE_MANDATORY_ARRAY; 44 45 int OPTIONAL_ELEMENT = BaseProperty.INSTANCE_OPTIONAL_ELT; 46 47 int OPTIONAL_ARRAY = BaseProperty.INSTANCE_OPTIONAL_ARRAY; 48 49 String BUNDLE_FILE = 50 "com.sun.enterprise.tools.common.validation.Bundle"; 52 String IMPL_FILE = 53 "com.sun.enterprise.tools.common.validation.impl.Impl"; 55 String XPATH_DELIMITER = "/"; 57 char XPATH_DELIMITER_CHAR = '/'; 58 } 59 | Popular Tags |