identifiable.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 25 行
JAVA
25 行
/* * @(#)Identifiable.java 1.10 03/12/19 * * Copyright 2004 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 + =
减小字号Ctrl + -
显示快捷键?