Package org.codehaus.enunciate.util

Source Code of org.codehaus.enunciate.util.MapType

/*
* Copyright 2006-2008 Web Cohesion
*
* 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 org.codehaus.enunciate.util;

import com.sun.mirror.type.DeclaredType;
import com.sun.mirror.type.TypeMirror;
import com.sun.mirror.type.InterfaceType;
import net.sf.jelly.apt.decorations.TypeMirrorDecorator;
import net.sf.jelly.apt.decorations.type.DecoratedInterfaceType;
import net.sf.jelly.apt.decorations.type.DecoratedTypeMirror;

/**
* A decorated map type.
*
* @author Ryan Heaton
*/
public class MapType extends DecoratedInterfaceType {

  private final TypeMirror keyType;
  private final TypeMirror valueType;
  private DeclaredType originalType;

  public MapType(InterfaceType interfaceType, TypeMirror keyType, TypeMirror valueType) {
    super(interfaceType);

    TypeMirror mapKeyType = MapTypeUtil.findMapType(keyType);
    if (mapKeyType != null) {
      this.keyType = mapKeyType;
    }
    else {
      this.keyType = keyType;
    }

    TypeMirror mapValueType = MapTypeUtil.findMapType(valueType);
    if (mapValueType != null) {
      this.valueType = mapValueType;
    }
    else {
      this.valueType = valueType;
    }

    this.originalType = interfaceType;
  }

  /**
   * The key type associated with this map type.
   *
   * @return The key type associated with this map type.
   */
  public TypeMirror getKeyType() {
    return keyType;
  }

  /**
   * The key type associated with this map type.
   *
   * @return The key type associated with this map type.
   */
  public TypeMirror getValueType() {
    return valueType;
  }

  /**
   * The original map type.
   *
   * @return The original map type.
   */
  public DeclaredType getOriginalType() {
    return originalType;
  }

  /**
   * The original map type.
   *
   * @param originalType The original map type.
   */
  public void setOriginalType(DeclaredType originalType) {
    this.originalType = originalType;
  }

  @Override
  public boolean isInstanceOf(String className) {
    DecoratedTypeMirror decorated = (DecoratedTypeMirror) TypeMirrorDecorator.decorate(this.originalType);
    return decorated.isInstanceOf(className);
  }

  /**
   * @return true.
   */
  public boolean isMap() {
    return true;
  }

  @Override
  public boolean isCollection() {
    return false;
  }
}
TOP

Related Classes of org.codehaus.enunciate.util.MapType

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.