/*      */ public static boolean shouldEmit(TypeEntry type) /*      */ {
   /* 1351 */ return ((type.getBaseType() == null) || (type.getRefType() != null))
       && (!(type instanceof CollectionTE))
       && (!(type instanceof org.apache.axis.wsdl.symbolTable.Element))
       && (type.isReferenced())
       && (!type.isOnlyLiteralReferenced())
       && ((type.getNode() == null)
           || ((!isXsNode(type.getNode(), "group"))
               && (!isXsNode(type.getNode(), "attributeGroup"))));
   /*      */ }