⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 singlecompressednamebase.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 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 + -