home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / jNetTool.exe / org / xbill / DNS / SingleCompressedNameBase.class (.txt) < prev    next >
Encoding:
Java Class File  |  2005-06-05  |  960 b   |  15 lines

  1. package org.xbill.DNS;
  2.  
  3. abstract class SingleCompressedNameBase extends SingleNameBase {
  4.    protected SingleCompressedNameBase() {
  5.    }
  6.  
  7.    protected SingleCompressedNameBase(Name name, int type, int dclass, long ttl, Name singleName, String description) {
  8.       super(name, type, dclass, ttl, singleName, description);
  9.    }
  10.  
  11.    void rrToWire(DNSOutput out, Compression c, boolean canonical) {
  12.       this.singleName.toWire(out, c, canonical);
  13.    }
  14. }
  15.