com.sun.tools.xjc.reader.ModelChecker Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.tools.xjc.reader;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import javax.xml.namespace.QName;
import com.sun.tools.xjc.ErrorReceiver;
import com.sun.tools.xjc.model.CClassInfo;
import com.sun.tools.xjc.model.CPropertyInfo;
import com.sun.tools.xjc.model.Model;
/**
* Checks errors on model classes.
*
*
* This should be used as a {@link Ring} component.
*
* @author Kohsuke Kawaguchi
*/
public final class ModelChecker {
private final Model model = Ring.get(Model.class);
private final ErrorReceiver errorReceiver = Ring.get(ErrorReceiver.class);
public ModelChecker() {
}
public void check() {
for( CClassInfo ci : model.beans().values() )
check(ci);
}
private void check( CClassInfo ci ) {
List props = ci.getProperties();
Map collisionTable = new HashMap();
OUTER:
for( int i=0; i