166167168169170171172173174175176
public Type lookupDeclaration(String name) { Type type = (Type)_types.get(name); if (type == null) { Namespace ns = _address.getZone().getNamespace(name); if (ns != null) { type = new NamespaceBase(this, name, ns, null); } } return type;
191192193194195196197198199200201
{ Type type = (Type)_types.get(name); if (type != null) { return type; } Namespace ns = _address.getZone().getNamespace(name); if (ns != null) { type = new ImportedNamespaceStatement(this, name, null); if (type != null) { return type; }