home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / JAVA / MSJAVX86.EXE / xmldso.cab / com / ms / xml / util / Attribute.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-05  |  591 b   |  27 lines

  1. package com.ms.xml.util;
  2.  
  3. public class Attribute {
  4.    Name name;
  5.    Object value;
  6.  
  7.    public Object getValue() {
  8.       return this.value;
  9.    }
  10.  
  11.    void setValue(Object var1) {
  12.       this.value = var1;
  13.    }
  14.  
  15.    public Attribute() {
  16.    }
  17.  
  18.    public Attribute(Name var1, Object var2) {
  19.       this.name = var1;
  20.       this.value = var2;
  21.    }
  22.  
  23.    public Name getName() {
  24.       return this.name;
  25.    }
  26. }
  27.