Uses of Class
gnu.mapping.MethodProc
-
Packages that use MethodProc Package Description gnu.expr SupportsExpression
, and various related classes need to compile programming languages.gnu.kawa.functions gnu.kawa.reflect Contains classes to use reflection.gnu.kawa.xml gnu.kawa.xslt gnu.mapping SupportsProcedure
, and various related classes needed at run-time by dynamically typed languages (such as Scheme and ECMAScript).gnu.xquery.util kawa.lang -
-
Uses of MethodProc in gnu.expr
Subclasses of MethodProc in gnu.expr Modifier and Type Class Description class
CompiledProc
class
GenericProc
A collection of MethodProcs; one is chosen at apply time.static class
LambdaExp.Closure
class
PrimProcedure
A primitive Procedure implemented by a plain Java method.Fields in gnu.expr declared as MethodProc Modifier and Type Field Description protected MethodProc[]
GenericProc. methods
Methods in gnu.expr that return MethodProc Modifier and Type Method Description MethodProc
GenericProc. getMethod(int i)
Methods in gnu.expr with parameters of type MethodProc Modifier and Type Method Description void
GenericProc. add(MethodProc method)
protected void
GenericProc. addAll(MethodProc[] procs)
void
GenericProc. addAtEnd(MethodProc method)
-
Uses of MethodProc in gnu.kawa.functions
Subclasses of MethodProc in gnu.kawa.functions Modifier and Type Class Description class
AppendValues
class
CallCC
Implement the Scheme standard function "call-with-current-continuation".class
ValuesMap
Map a function over a value sequence, yielding a new sequence.Constructors in gnu.kawa.functions with parameters of type MethodProc Constructor Description NamedPart(Object container, String mname, char kind, MethodProc methods)
-
Uses of MethodProc in gnu.kawa.reflect
Subclasses of MethodProc in gnu.kawa.reflect Modifier and Type Class Description class
TypeSwitch
Implement 'typeswitch' (as in XQuery) or 'typecase'.Methods in gnu.kawa.reflect that return MethodProc Modifier and Type Method Description static MethodProc
ClassMethods. apply(ObjectType dtype, String mname, char mode, Language language)
Find methods.static MethodProc
ClassMethods. apply(Procedure thisProc, Object arg0, Object arg1)
protected MethodProc
Invoke. lookupMethods(ObjectType dtype, Object name)
-
Uses of MethodProc in gnu.kawa.xml
Subclasses of MethodProc in gnu.kawa.xml Modifier and Type Class Description class
AncestorAxis
Used to implement a ancestor:: step in a path expression.class
AncestorOrSelfAxis
Used to implement a ancestor-or-self:: step in a path expression.class
AttributeAxis
Used to implement an attribute:: step in a path expression.class
Attributes
class
ChildAxis
Used to implement a child:: step in a path expression.class
Children
class
CommentConstructor
class
DescendantAxis
Used to implement a descendant:: step in a path expression.class
DescendantOrSelfAxis
Used to implement a descendant-or-self:: step in a path expression.class
DocumentConstructor
class
FollowingAxis
Used to implement a following:: step in a path expression.class
FollowingSiblingAxis
Used to implement a following-sibling:: step in a path expression.class
IteratorItems
class
ListItems
A function that maps a List into the sequence of its elements.class
MakeAttribute
class
MakeCDATA
class
MakeElement
class
MakeProcInst
class
MakeResponseHeader
A procedure that implements the "response-header" function.class
MakeText
class
MakeWithBaseUri
A Procedure to create an included entity object, or set the base-uri property for a document or fragment.class
NodeConstructor
class
ParentAxis
Used to implement a parent:: step in a path expression.class
PrecedingAxis
Used to implement a following:: step in a path expression.class
PrecedingSiblingAxis
Used to implement a following-sibling:: step in a path expression.class
SelfAxis
Used to implement a self:: step in a path expression.class
TreeScanner
Abstract class that scans part of a node tree. -
Uses of MethodProc in gnu.kawa.xslt
Subclasses of MethodProc in gnu.kawa.xslt Modifier and Type Class Description class
ApplyTemplates
Implements the XSLT apply-templates command. -
Uses of MethodProc in gnu.mapping
Methods in gnu.mapping that return MethodProc Modifier and Type Method Description static MethodProc
MethodProc. mostSpecific(MethodProc proc1, MethodProc proc2)
Return the more specific of the arguments.Methods in gnu.mapping with parameters of type MethodProc Modifier and Type Method Description static MethodProc
MethodProc. mostSpecific(MethodProc proc1, MethodProc proc2)
Return the more specific of the arguments.static boolean
MethodProc. overrideEquivalent(MethodProc proc1, MethodProc proc2)
An approximation of "override-equivalent" as defined in the JLS. -
Uses of MethodProc in gnu.xquery.util
Subclasses of MethodProc in gnu.xquery.util Modifier and Type Class Description class
OrderedMap
A procedure used to represent a FLWOR expression with anorder by
clause.class
RelativeStep
Implements XPath path expression.class
ValuesFilter
-
Uses of MethodProc in kawa.lang
Subclasses of MethodProc in kawa.lang Modifier and Type Class Description class
Continuation
A Continuation "represents an entire (default) future for the computation.
-