3ad1aba1f8
2009-06-29 Andrew Haley <aph@redhat.com> PR java/40590 * tools/gnu/classpath/tools/javah/FieldHelper.java (print): Use printName(). * tools/gnu/classpath/tools/javah/MethodHelper.java (print): Use printName(). * tools/gnu/classpath/tools/javah/CniStubPrinter.java (printDecl): Use printName(). * tools/gnu/classpath/tools/javah/Keywords.java (words): Replace with keywords list from gcc/java/mangle.c. * tools/gnu/classpath/tools/javah/ClassWrapper.java (printMethods): Don't pre-convert a C++ keyword. (print(CniPrintStream)): Call CniPrintStream.printName(). (printContents): Likewise. * tools/gnu/classpath/tools/javah/CniPrintStream.java (getClassName): Don't call replaceAll("/", "::"). (print(Type)): Add ""::" befor name, " *" after. Use printName(), not print. (printName(PrintStream, String), printName(String), printlnName): New methods. (moveToPackage): Use printName(). 2009-06-29 Andrew Haley <aph@redhat.com> PR java/40590 * java-tree.h (cxx_keyword_p): New declaration. * mangle_name.c (utf8_cmp): Move here from mangle.c. (cxx_keywords): Likewise. (cxx_keyword_p): Likewise. (MANGLE_CXX_KEYWORDS): New macro. (append_gpp_mangled_name): Use MANGLE_CXX_KEYWORDS. (append_gpp_mangled_name): Likewise. * mangle.c: Move code to mangle_name.c. (mangle_member_name): Don't call cxx_keyword_p. From-SVN: r149059
80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __gnu_xml_xpath_XPathImpl__
|
|
#define __gnu_xml_xpath_XPathImpl__
|
|
|
|
#pragma interface
|
|
|
|
#include <java/lang/Object.h>
|
|
extern "Java"
|
|
{
|
|
namespace gnu
|
|
{
|
|
namespace xml
|
|
{
|
|
namespace xpath
|
|
{
|
|
class XPathImpl;
|
|
class XPathParser;
|
|
}
|
|
}
|
|
}
|
|
namespace javax
|
|
{
|
|
namespace xml
|
|
{
|
|
namespace namespace$
|
|
{
|
|
class NamespaceContext;
|
|
class QName;
|
|
}
|
|
namespace xpath
|
|
{
|
|
class XPathExpression;
|
|
class XPathFunctionResolver;
|
|
class XPathVariableResolver;
|
|
}
|
|
}
|
|
}
|
|
namespace org
|
|
{
|
|
namespace xml
|
|
{
|
|
namespace sax
|
|
{
|
|
class InputSource;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class gnu::xml::xpath::XPathImpl : public ::java::lang::Object
|
|
{
|
|
|
|
public: // actually package-private
|
|
XPathImpl(::javax::xml::namespace$::NamespaceContext *, ::javax::xml::xpath::XPathVariableResolver *, ::javax::xml::xpath::XPathFunctionResolver *);
|
|
public:
|
|
virtual void reset();
|
|
virtual void setXPathVariableResolver(::javax::xml::xpath::XPathVariableResolver *);
|
|
virtual ::javax::xml::xpath::XPathVariableResolver * getXPathVariableResolver();
|
|
virtual void setXPathFunctionResolver(::javax::xml::xpath::XPathFunctionResolver *);
|
|
virtual ::javax::xml::xpath::XPathFunctionResolver * getXPathFunctionResolver();
|
|
virtual void setNamespaceContext(::javax::xml::namespace$::NamespaceContext *);
|
|
virtual ::javax::xml::namespace$::NamespaceContext * getNamespaceContext();
|
|
virtual ::javax::xml::xpath::XPathExpression * compile(::java::lang::String *);
|
|
virtual ::java::lang::Object * evaluate(::java::lang::String *, ::java::lang::Object *, ::javax::xml::namespace$::QName *);
|
|
virtual ::java::lang::String * evaluate(::java::lang::String *, ::java::lang::Object *);
|
|
virtual ::java::lang::Object * evaluate(::java::lang::String *, ::org::xml::sax::InputSource *, ::javax::xml::namespace$::QName *);
|
|
virtual ::java::lang::String * evaluate(::java::lang::String *, ::org::xml::sax::InputSource *);
|
|
public: // actually package-private
|
|
::gnu::xml::xpath::XPathParser * __attribute__((aligned(__alignof__( ::java::lang::Object)))) parser;
|
|
::javax::xml::namespace$::NamespaceContext * namespaceContext;
|
|
::javax::xml::xpath::XPathVariableResolver * variableResolver;
|
|
::javax::xml::xpath::XPathFunctionResolver * functionResolver;
|
|
public:
|
|
static ::java::lang::Class class$;
|
|
};
|
|
|
|
#endif // __gnu_xml_xpath_XPathImpl__
|