Package net.jangaroo.jooc

Examples of net.jangaroo.jooc.TypeRelation


  public ParameterImpl(net.jangaroo.jooc.Parameter param) {
    this.param=param;
  }

  public Type type() {
    TypeRelation optTypeRelation = param.getOptTypeRelation();
    return optTypeRelation==null ? TypeImpl.ANY
      : (Type)DocMap.getDoc(optTypeRelation.getType());
  }
View Full Code Here


  public boolean isIncluded() {
    return isPublic() || isProtected();
  }

  public Type getType() {
    TypeRelation optTypeRelation = getMemberDeclaration().getOptTypeRelation();
    if (optTypeRelation!=null)
      return (Type) (DocMap.getDoc(optTypeRelation.getType()));
    return TypeImpl.ANY;
  }
View Full Code Here

TOP

Related Classes of net.jangaroo.jooc.TypeRelation

Copyright © 2018 www.massapicom. 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.