/* * #! * Ontopia OSL Schema * #- * Copyright (C) 2001 - 2014 The Ontopia Project * #- * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * !# */ package net.ontopia.topicmaps.schema.core; import net.ontopia.topicmaps.core.TMObjectIF; /** * PUBLIC: Schema validator objects report errors through this interface. * @deprecated The schema tools are no longer maintained in favor of a future TMCL implementation */ @Deprecated public interface ValidationHandlerIF { /** * PUBLIC: Called before the validation of an entire topic map * begins. When single topics or associations are validated this * method is not called. */ public void startValidation(); /** * PUBLIC: Called when violations of the schema are discovered. * @param message A message describing the nature of the violation. * @param offender The object that violated the schema. * @param container The container of the offending object. * @param constraint The constraint that was violated. * @exception SchemaViolationException Implementations may throw this * exception if they wish to halt validation. */ public void violation(String message, TMObjectIF container, Object offender, ConstraintIF constraint) throws SchemaViolationException; /** * PUBLIC: Called after the validation of an entire topic map. When * single topics or associations are validated this method is not * called. */ public void endValidation(); }