001 package com.oxygenxml.validate.nvdl; 002 003 import com.thaiopensource.validate.FlagPropertyId; 004 005 /** 006 * Store NVDL properties. 007 */ 008 public class NvdlProperty { 009 /** 010 * Do not allow creating instances of this class. 011 */ 012 private NvdlProperty() { } 013 014 /** 015 * ATTRIBUTES_SCHEMA property specifies that we have a schema to check attributes only. 016 * Those attributes are added to a placeholder element and the schema should be revritten to 017 * allow any element with those attributes, so that the check is performed only on the attributes. 018 */ 019 public static final FlagPropertyId ATTRIBUTES_SCHEMA = new FlagPropertyId("ATTRIBUTES_SCHEMA"); 020 }