KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xslt > model > impl > LiteralResultElementImpl


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.xslt.model.impl;
20
21 import org.netbeans.modules.xml.xam.dom.Attribute;
22 import org.netbeans.modules.xslt.model.LiteralResultElement;
23 import org.netbeans.modules.xslt.model.XslComponent;
24 import org.netbeans.modules.xslt.model.XslVisitor;
25 import org.w3c.dom.Element JavaDoc;
26
27
28 /**
29  * @author ads
30  *
31  */

32 class LiteralResultElementImpl extends SequenceElementConstructorImpl implements
33         LiteralResultElement
34 {
35
36     LiteralResultElementImpl( XslModelImpl model, Element e ) {
37         super(model, e);
38     }
39
40     /* (non-Javadoc)
41      * @see org.netbeans.modules.xslt.model.impl.XslComponentImpl#accept(org.netbeans.modules.xslt.model.XslVisitor)
42      */

43     @Override JavaDoc
44     public void accept( XslVisitor visitor )
45     {
46         visitor.visit( this );
47     }
48
49     /* (non-Javadoc)
50      * @see org.netbeans.modules.xslt.model.impl.XslComponentImpl#getComponentType()
51      */

52     @Override JavaDoc
53     public Class JavaDoc<? extends XslComponent> getComponentType()
54     {
55         return LiteralResultElement.class;
56     }
57
58     /* (non-Javadoc)
59      * @see org.netbeans.modules.xslt.model.LiteralResultElement#getAttribute(java.lang.String)
60      */

61     public String JavaDoc getAttribute( String JavaDoc attribute ) {
62         return getAttribute(new StringAttribute(attribute));
63     }
64
65     /* (non-Javadoc)
66      * @see org.netbeans.modules.xslt.model.LiteralResultElement#setAttribute(java.lang.String, java.lang.String)
67      */

68     public void setAttribute( String JavaDoc attribute, String JavaDoc value ) {
69         setAttribute(attribute, new StringAttribute(attribute), value);
70     }
71     
72     static class StringAttribute implements Attribute {
73
74         StringAttribute( String JavaDoc name ) {
75             myName = name;
76         }
77
78         public Class JavaDoc getType() {
79             return String JavaDoc.class;
80         }
81
82         public String JavaDoc getName() {
83             return myName;
84         }
85
86         public Class JavaDoc getMemberType() {
87             return null;
88         }
89         
90         private String JavaDoc myName;
91     }
92
93 }
94
Popular Tags