~vcs-imports/xena/trunk

« back to all changes in this revision

Viewing changes to ext/src/xalan-j_2_7_1/src/org/apache/xalan/xsltc/compiler/LocalNameCall.java

  • Committer: matthewoliver
  • Date: 2009-12-10 03:18:07 UTC
  • Revision ID: vcs-imports@canonical.com-20091210031807-l086qguzdlljtkl9
Merged Xena Testing into Xena Stable for the Xena 5 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one
 
3
 * or more contributor license agreements. See the NOTICE file
 
4
 * distributed with this work for additional information
 
5
 * regarding copyright ownership. The ASF licenses this file
 
6
 * to you under the Apache License, Version 2.0 (the  "License");
 
7
 * you may not use this file except in compliance with the License.
 
8
 * You may obtain a copy of the License at
 
9
 *
 
10
 *     http://www.apache.org/licenses/LICENSE-2.0
 
11
 *
 
12
 * Unless required by applicable law or agreed to in writing, software
 
13
 * distributed under the License is distributed on an "AS IS" BASIS,
 
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
15
 * See the License for the specific language governing permissions and
 
16
 * limitations under the License.
 
17
 */
 
18
/*
 
19
 * $Id: LocalNameCall.java,v 1.2 2009/12/10 03:18:18 matthewoliver Exp $
 
20
 */
 
21
 
 
22
package org.apache.xalan.xsltc.compiler;
 
23
 
 
24
import java.util.Vector;
 
25
 
 
26
import org.apache.bcel.generic.ConstantPoolGen;
 
27
import org.apache.bcel.generic.INVOKEINTERFACE;
 
28
import org.apache.bcel.generic.INVOKESTATIC;
 
29
import org.apache.bcel.generic.InstructionList;
 
30
import org.apache.xalan.xsltc.compiler.util.ClassGenerator;
 
31
import org.apache.xalan.xsltc.compiler.util.MethodGenerator;
 
32
 
 
33
/**
 
34
 * @author Morten Jorgensen
 
35
 */
 
36
final class LocalNameCall extends NameBase {
 
37
 
 
38
    /**
 
39
     * Handles calls with no parameter (current node is implicit parameter).
 
40
     */
 
41
    public LocalNameCall(QName fname) {
 
42
        super(fname);
 
43
    }
 
44
 
 
45
    /**
 
46
     * Handles calls with one parameter (either node or node-set).
 
47
     */
 
48
    public LocalNameCall(QName fname, Vector arguments) {
 
49
        super(fname, arguments);
 
50
    }
 
51
 
 
52
    /**
 
53
     * This method is called when the constructor is compiled in
 
54
     * Stylesheet.compileConstructor() and not as the syntax tree is traversed.
 
55
     */
 
56
    public void translate(ClassGenerator classGen,
 
57
                          MethodGenerator methodGen) {
 
58
        final ConstantPoolGen cpg = classGen.getConstantPool();
 
59
        final InstructionList il = methodGen.getInstructionList();
 
60
 
 
61
        // Returns the name of a node in the DOM
 
62
        final int getNodeName = cpg.addInterfaceMethodref(DOM_INTF,
 
63
                                                          "getNodeName",
 
64
                                                          "(I)"+STRING_SIG);
 
65
 
 
66
        final int getLocalName = cpg.addMethodref(BASIS_LIBRARY_CLASS,
 
67
                                                  "getLocalName",
 
68
                                                  "(Ljava/lang/String;)"+
 
69
                                                  "Ljava/lang/String;");
 
70
        super.translate(classGen, methodGen);
 
71
        il.append(new INVOKEINTERFACE(getNodeName, 2));
 
72
        il.append(new INVOKESTATIC(getLocalName));
 
73
    }
 
74
}