socketinfo.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 26 行
JAVA
26 行
/* * @(#)SocketInfo.java 1.8 04/06/21 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.transport;public interface SocketInfo{ // Endpoint types known in advance. // If you change the value of this constant then update // activation.idl accordingly. It has a duplicate definition // to avoid a compilation dependency. public static final String IIOP_CLEAR_TEXT = "IIOP_CLEAR_TEXT"; public String getType(); public String getHost(); public int getPort();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?