📄 singlecompressednamebase.java
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -