home *** CD-ROM | disk | FTP | other *** search
- package com.kav.xsl;
-
- public class XSLArg extends EmptyXSLObject {
- protected XSLArg(XSLStylesheet var1) {
- super(var1, (short)37);
- }
-
- public String getName() {
- return ((XSLObject)this).getAttribute("name");
- }
-
- public String getValue() {
- return ((XSLObject)this).getAttribute("value");
- }
-
- public void setName(String var1) {
- try {
- ((XSLObject)this).setAttribute("name", var1);
- } catch (XSLException var2) {
- }
- }
-
- public void setValue(String var1) {
- try {
- ((XSLObject)this).setAttribute("value", var1);
- } catch (XSLException var2) {
- }
- }
- }
-