📄 identifiable.java
字号:
/* * @(#)Identifiable.java 1.11 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.ior;/** This interface represents an entity that can be written to an * OutputStream and has an identity that is represented by an integer. * This identity is essentially the type of the entity, and is used in * order to know how to read the entity back from an InputStream. * @author Ken Cavanaugh */public interface Identifiable extends Writeable{ /** Return the (type) identity of this entity. * @return int */ public int getId();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -