Examples of SymTabEntry


Examples of com.sun.tools.corba.se.idl.SymtabEntry

  protected void generateContainedTypes ()
  {
    Enumeration e = u.contained ().elements ();
    while (e.hasMoreElements ())
    {
      SymtabEntry entry = (SymtabEntry)e.nextElement ();

      // Don't generate contained entries if they are sequences.
      // Sequences are unnamed and since they translate to arrays,
      // no classes are generated for them, not even holders in this
      // case since they cannot be accessed outside of this union.
      if (!(entry instanceof SequenceEntry))
        entry.generate (symbolTable, stream);
    }
  } // generateContainedTypes
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

    public ServiceEntry getServiceEntry()throws WrapperFault{
    Iterator it = symbolTable.getHashMap().values().iterator();
     while (it.hasNext()) {
      Vector v = (Vector) it.next();
        for (int i = 0; i < v.size(); ++i) {
          SymTabEntry entry = (SymTabEntry) v.elementAt(i);
  
       if (entry instanceof ServiceEntry) {
          return (ServiceEntry)entry;
         }
      }
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

        while (it.hasNext())
        {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i)
            {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);

                if (entry instanceof ServiceEntry)
                {
                    return (ServiceEntry) entry;
                }
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

    public ServiceEntry getServiceEntry()throws WrapperFault{
    Iterator it = symbolTable.getHashMap().values().iterator();
     while (it.hasNext()) {
      Vector v = (Vector) it.next();
        for (int i = 0; i < v.size(); ++i) {
          SymTabEntry entry = (SymTabEntry) v.elementAt(i);
  
       if (entry instanceof ServiceEntry) {
          return (ServiceEntry)entry;
         }
      }
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

        HashMap anonQNames = new HashMap();
        Iterator it = symbolTable.getHashMap().values().iterator();
        while (it.hasNext()) {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i) {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                 if(entry.getName() != null)
                    continue;

                // Use the type or the referenced type's QName to generate the java name.
                if (entry instanceof TypeEntry) {
                    TypeEntry tEntry = (TypeEntry) entry;
                    String dims = tEntry.getDimensions();
                    TypeEntry refType = tEntry.getRefType();
                    while (refType != null) {
                        tEntry = refType;
                        dims += tEntry.getDimensions();
                        refType = tEntry.getRefType();
                    }


                    // Need to javify the ref'd TypeEntry if it was not
                    // already processed
                    if (tEntry.getName() == null) {
                        // Get the QName of the ref'd TypeEntry, which
                        // is will be used to javify the name
                        QName typeQName = tEntry.getQName();
                        if ((typeQName.getLocalPart().
                             indexOf(SymbolTable.ANON_TOKEN) < 0)) {
                            // Normal Case: The ref'd type is not anonymous
                            // Simply construct the java name from
                            // the qName
                            tEntry.setName(emitter.getJavaName(typeQName));
                        } else {
                            // This is an anonymous type name.
                            // Axis uses '>' as a nesting token to generate
                            // unique qnames for anonymous types.
                            // Only consider the localName after the last '>'
                            // when generating the java name
                            String localName = typeQName.getLocalPart();
                            localName =
                                localName.substring(
                                    localName.lastIndexOf(
                                        SymbolTable.ANON_TOKEN)+1);
                            typeQName = new QName(typeQName.getNamespaceURI(),
                                                  localName);
                            // If there is already an existing type,
                            // there will be a collision. 
                            // If there is an existing anon type,
                            // there will be a  collision. 
                            // In both cases, mangle the name.
                            symbolTable.getType(typeQName);
                            if (anonQNames.get(typeQName) != null) {
                                localName += "Type" + uniqueNum++;
                                typeQName =
                                    new QName(typeQName.getNamespaceURI(),
                                              localName);
                            }
                            anonQNames.put(typeQName, typeQName);

                            // Now set the name with the constructed qname
                            tEntry.setName(emitter.getJavaName(typeQName));
                        }
                    }
                    // Set the entry with the same name as the ref'd entry
                    // but add the appropriate amount of dimensions
                    entry.setName(tEntry.getName() + dims);
                }

                // If it is not a type, then use this entry's QName to
                // generate its name.
                else {
                    entry.setName(emitter.getJavaName(entry.getQName()));  
                }
            }
        }
    } // javifyNames
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

    private void setFaultContext(SymbolTable symbolTable) {
        Iterator it = symbolTable.getHashMap().values().iterator();
        while (it.hasNext()) {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i) {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                // Inspect each BindingEntry in the Symbol Table
                if (entry instanceof BindingEntry) {
                    BindingEntry bEntry = (BindingEntry) entry;
                    HashMap allOpFaults = bEntry.getFaults();
                    Iterator ops = allOpFaults.values().iterator();
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

    protected void determineInterfaceNames(SymbolTable symbolTable) {
        Iterator it = symbolTable.getHashMap().values().iterator();
        while (it.hasNext()) {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i) {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                if (entry instanceof BindingEntry) {
                    // The SEI (Service Endpoint Interface) name
                    // is always the portType name.
                    BindingEntry bEntry = (BindingEntry) entry;
                    String seiName = null;
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

                // If the names are already different, no mangling is needed.
                if (resolve) {
                    resolve = false// Assume false
                    String name = null;
                    for (int i = 0; i < v.size() && !resolve; ++i) {
                        SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                         if (entry instanceof MessageEntry ||
                             entry instanceof BindingEntry) {
                             ; // Don't process these
                         } else if (name== null) {
                             name = entry.getName();
                         } else if (name.equals(entry.getName())) {
                             resolve = true// Need to do resolution
                         }

                    }
                }

                // Full Mangle if resolution is necessary.
                if (resolve) {
                    boolean firstType = true;
                    for (int i = 0; i < v.size(); ++i) {
                        SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                        if (entry instanceof Element) {
                            entry.setName(mangleName(entry.getName(),
                                    "_ElemType"));

                            // If this global element was defined using
                            // an anonymous type, then need to change the
                            // java name of the anonymous type to match.
                            QName anonQName = new QName(entry.getQName().getNamespaceURI(),
                                                        SymbolTable.ANON_TOKEN +
                                                        entry.getQName().getLocalPart());
                            TypeEntry anonType = symbolTable.getType(anonQName);
                            if (anonType != null) {
                                anonType.setName(entry.getName());
                                anonTypes.add(anonType);
                            }
                        }
                        else if (entry instanceof TypeEntry) {
                            // Search all other types for java names that match this one.
                            // The sameJavaClass method returns true if the java names are
                            // the same (ignores [] ).
                            if (firstType) {
                                firstType = false;
                                Vector types = symbolTable.getTypes();
                                for (int j = 0; j < types.size(); ++j) {
                                    TypeEntry type = (TypeEntry)
                                            types.elementAt(j);
                                    if (type != entry &&
                                            !(type instanceof Element) &&
                                            type.getBaseType() == null &&
                                            sameJavaClass(
                                                    ((Type) entry).getName(),
                                                    type.getName())) {
                                        v.add(type)
                                    }
                                }
                            }
                            // If this is an anonymous type, it's name was resolved in
                            // the previous if block.  Don't reresolve it.
                            if (!anonTypes.contains(entry)) {
                                entry.setName(mangleName(entry.getName(), "_Type"));
                            }
                        }
                        else if (entry instanceof PortTypeEntry) {
                            entry.setName(mangleName(entry.getName(), "_Port"));
                        }
                        else if (entry instanceof ServiceEntry) {
                            entry.setName(mangleName(entry.getName(),
                                    "_Service"));
                        }
                        // else if (entry instanceof MessageEntry) {
                        //     we don't care about messages
                        // }
                        else if (entry instanceof BindingEntry) {
                            BindingEntry bEntry = (BindingEntry) entry;

                            // If there is no literal use, then we never see a
                            // class named directly from the binding name.  They
                            // all have suffixes:  Stub, Skeleton, Impl.
                            // If there IS literal use, then the SDI will be
                            // named after the binding name, so there is the
                            // possibility of a name clash.
                            if (bEntry.hasLiteral()) {
                                entry.setName(mangleName(entry.getName(),
                                        "_Binding"));
                            }
                        }
                    }
                }
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

    protected void setAllReferencesToTrue() {
        Iterator it = symbolTable.getHashMap().values().iterator();
        while (it.hasNext()) {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i) {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                if (entry instanceof BindingEntry &&
                        ((BindingEntry) entry).getBindingType() !=
                        BindingEntry.TYPE_SOAP) {
                    entry.setIsReferenced(false);
                }
                else {
                    entry.setIsReferenced(true);
                }
            }
        }
    } // setAllReferencesToTrue
View Full Code Here

Examples of org.apache.axis.wsdl.symbolTable.SymTabEntry

        Iterator it = symbolTable.getHashMap().values().iterator();
        while (it.hasNext()) {
            Vector v = (Vector) it.next();
            for (int i = 0; i < v.size(); ++i) {
                SymTabEntry entry = (SymTabEntry) v.elementAt(i);
                if (entry instanceof BindingEntry) {
                    BindingEntry bEntry = (BindingEntry) entry;
                    Binding binding = bEntry.getBinding();
                    PortType portType = binding.getPortType();
                    PortTypeEntry ptEntry =
View Full Code Here
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.