singlecompressednamebase.java

来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 30 行

JAVA
30
字号
// Copyright (c) 2004 Brian Wellington (bwelling@xbill.org)package org.xbill.DNS;/** * Implements common functionality for the many record types whose format * is a single compressed name. * * @author Brian Wellington */abstract class SingleCompressedNameBase extends SingleNameBase {protectedSingleCompressedNameBase() {}protectedSingleCompressedNameBase(Name name, int type, int dclass, long ttl,			 Name singleName, String description){        super(name, type, dclass, ttl, singleName, description);}voidrrToWire(DNSOutput out, Compression c, boolean canonical) {	singleName.toWire(out, c, canonical);}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?