1 19 20 package org.netbeans.modules.j2ee.sun.validation; 21 22 import org.netbeans.modules.schema2beans.BaseProperty; 23 24 30 public interface Constants { 31 32 int MANDATORY_ELEMENT = BaseProperty.INSTANCE_MANDATORY_ELT; 33 34 int MANDATORY_ARRAY = BaseProperty.INSTANCE_MANDATORY_ARRAY; 35 36 int OPTIONAL_ELEMENT = BaseProperty.INSTANCE_OPTIONAL_ELT; 37 38 int OPTIONAL_ARRAY = BaseProperty.INSTANCE_OPTIONAL_ARRAY; 39 40 String BUNDLE_FILE = 41 "org.netbeans.modules.j2ee.sun.validation.Bundle"; 43 String IMPL_FILE = 44 "org.netbeans.modules.j2ee.sun.validation.impl.Impl"; 46 String XPATH_DELIMITER = "/"; 48 char XPATH_DELIMITER_CHAR = '/'; 49 } 50 | Popular Tags |