Java XML QName addInfo(final QName nm, final Integer kind, final Class cl)

Here you can find the source of addInfo(final QName nm, final Integer kind, final Class cl)

Description

add Info

License

Apache License

Declaration

private static void addInfo(final QName nm, final Integer kind,
            final Class cl) 

Method Source Code

//package com.java2s;
/* ********************************************************************
 Licensed to Jasig under one or more contributor license
 agreements. See the NOTICE file distributed with this work
 for additional information regarding copyright ownership.
 Jasig licenses this file to you 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://from   w  w  w .  j  a va2  s  . co  m

 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.
 */

import java.util.HashMap;

import java.util.Map;

import javax.xml.namespace.QName;

public class Main {
    static Map<Class, QName> compNames = new HashMap<Class, QName>();
    static Map<QName, Integer> compKinds = new HashMap<QName, Integer>();

    private static void addInfo(final QName nm, final Integer kind,
            final Class cl) {
        compNames.put(cl, nm);
        compKinds.put(nm, kind);
    }
}

Related

  1. addNamespace(Element element, QName qName)
  2. addTypeQname(QName elemntNameSpace, List propertyQnameValueList, PropertyDescriptor propDesc, QName beanName, boolean processingDocLitBare)
  3. compareQName(QName qname, Node node)
  4. compareRelation(QName a, QName b)

  5. HOME | Copyright © www.java2s.com 2016