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