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;
}