mrrecord.java

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

JAVA
37
字号
// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)package org.xbill.DNS;/** * Mailbox Rename Record  - specifies a rename of a mailbox. * * @author Brian Wellington */public class MRRecord extends SingleNameBase {MRRecord() {}RecordgetObject() {	return new MRRecord();}/**  * Creates a new MR Record with the given data * @param newName The new name of the mailbox specified by the domain. * domain. */publicMRRecord(Name name, int dclass, long ttl, Name newName) {	super(name, Type.MR, dclass, ttl, newName, "new name");}/** Gets the new name of the mailbox specified by the domain */public NamegetNewName() {	return getSingleName();}}

⌨️ 快捷键说明

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