| /openjdk7/jdk/src/share/classes/sun/net/ |
| H A D | SocksProxy.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 32 * Proxy wrapper class so we can determine the socks protocol version. 35 private final int version; field in class:SocksProxy 37 private SocksProxy(SocketAddress addr, int version) { argument 39 this.version = version; 42 public static SocksProxy create(SocketAddress addr, int version) { argument 43 return new SocksProxy(addr, version); [all...] |
| /openjdk7/hotspot/src/share/vm/prims/ |
| H A D | jniExport.hpp | 6 * under the terms of the GNU General Public License version 2 only, as 12 * version 2 for more details (a copy is included in the LICENSE file that 15 * You should have received a copy of the GNU General Public License version 33 static bool GetExportedInterface(JavaVM* vm, void** penv, jint version, jint* iface) { argument 34 if (JvmtiExport::is_jvmti_version(version)) { 35 *iface = JvmtiExport::get_jvmti_interface(vm, penv, version);
|
| /openjdk7/jdk/src/share/classes/javax/imageio/spi/ |
| H A D | IIOServiceProvider.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 59 protected String version; field in class:IIOServiceProvider 63 * vendor name and version identifier. 66 * @param version a version identifier. 70 * @exception IllegalArgumentException if <code>version</code> 74 String version) { 78 if (version 73 IIOServiceProvider(String vendorName, String version) argument [all...] |
| H A D | ImageTranscoderSpi.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 55 * @param version a version identifier. 58 String version) { 59 super(vendorName, version); 57 ImageTranscoderSpi(String vendorName, String version) argument
|
| /openjdk7/jaxp/src/org/xml/sax/ext/ |
| H A D | Locator2Impl.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 54 private String version; field in class:Locator2Impl 67 * <em>encoding</em> and <em>version</em>strings are copied, 78 version = l2.getXMLVersion (); 88 * Returns the current value of the version property. 93 { return version; } 109 * Assigns the current value of the version property. 111 * @param version th 114 setXMLVersion(String version) argument [all...] |
| /openjdk7/jdk/src/share/classes/javax/crypto/spec/ |
| H A D | RC5ParameterSpec.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 35 * <p> The parameters consist of a version number, a rounds count, a word 50 private int version; field in class:RC5ParameterSpec 55 * Constructs a parameter set for RC5 from the given version, number of 58 * @param version the version. 62 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument 63 this.version 85 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) argument 112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument [all...] |
| /openjdk7/jdk/src/share/classes/sun/management/jdp/ |
| H A D | JdpGenericPacket.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 42 * Current version of protocol. Any implementation of this protocol has to 69 * Validate protocol header version field 71 * @param version - value to validate 74 public static void checkVersion(short version) argument 77 if (version > PROTOCOL_VERSION) { 78 throw new JdpException("Unsupported protocol version: " + version); [all...] |
| /openjdk7/jdk/src/share/classes/sun/security/x509/ |
| H A D | CertificateVersion.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 36 * This class defines the version of the X509 Certificate. 59 public static final String IDENT = "x509.info.version"; 63 public static final String NAME = "version"; 67 int version = V1; field in class:CertificateVersion 69 // Returns the version number. 71 return(version); 78 version 99 CertificateVersion(int version) argument [all...] |
| /openjdk7/jdk/src/windows/native/sun/windows/ |
| H A D | jawt.cpp | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 42 if (awt->version != JAWT_VERSION_1_3 43 && awt->version != JAWT_VERSION_1_4) { 49 if (awt->version >= JAWT_VERSION_1_4) {
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/ |
| H A D | DOMImplementationImpl.java | 78 * @param version The version number of the feature being tested. 83 * specified feature and version. 85 public boolean hasFeature(String feature, String version) { argument 87 boolean result = super.hasFeature(feature, version); 89 boolean anyVersion = version == null || version.length() == 0; 95 && (anyVersion || version.equals("2.0"))) 97 && (anyVersion || version.equals("2.0"))) 99 && (anyVersion || version [all...] |
| /openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/ |
| H A D | JavaSerializationComponent.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 38 * serialization version supported by the ORB. 47 private byte version; field in class:JavaSerializationComponent 61 public JavaSerializationComponent(byte version) { argument 62 this.version = version; 66 return this.version; 70 os.write_octet(version); [all...] |
| H A D | MaxStreamFormatVersionComponentImpl.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 49 private byte version; field in class:MaxStreamFormatVersionComponentImpl 62 return version == other.version ; 67 return version ; 72 return "MaxStreamFormatVersionComponentImpl[version=" + version + "]" ; 77 version [all...] |
| /openjdk7/jaxp/src/org/w3c/dom/html/ |
| H A D | HTMLHtmlElement.java | 5 * under the terms of the GNU General Public License version 2 only, as 13 * version 2 for more details (a copy is included in the LICENSE file that 16 * You should have received a copy of the GNU General Public License version 27 * License version 2 only, as published by the Free Software Foundation. 28 * However, the following notice accompanied the original version of this 50 * Version information about the document's DTD. See the version 55 public void setVersion(String version); argument
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/ |
| H A D | RuntimeVersion.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 32 * Obtains the version number of the JAX-WS runtime. 42 Version version = null; 43 InputStream in = RuntimeVersion.class.getResourceAsStream("version.properties"); 45 version = Version.create(in); 55 VERSION = version == null ? Version.create(null) : version; 59 * Get JAX-WS version [all...] |
| /openjdk7/jdk/src/solaris/native/sun/awt/ |
| H A D | jawt.c | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 44 if (awt->version != JAWT_VERSION_1_3 45 && awt->version != JAWT_VERSION_1_4 46 && awt->version != JAWT_VERSION_1_7) { 52 if (awt->version >= JAWT_VERSION_1_4) {
|
| /openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/ |
| H A D | SchemaDOMImplementation.java | 31 * @version $Id: SchemaDOMImplementation.java,v 1.2 2010-10-26 23:01:18 joehw Exp $ 54 public Object getFeature(String feature, String version) { argument 55 if (singleton.hasFeature(feature, version)) { 61 public boolean hasFeature(String feature, String version) { argument 62 final boolean anyVersion = version == null || version.length() == 0; 64 (anyVersion || version.equals("1.0") || version.equals("2.0") || version.equals("3.0"));
|
| /openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/ |
| H A D | SnmpParams.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 37 SnmpParams(int version) { argument 38 protocolVersion = version; 48 * Returns the version of the protocol to use. 55 * @return The version of the protocol to use. 62 * Sets the version of the protocol to be used. 63 * The version should be identified using the definitions 70 * @param protocolversion The version o [all...] |
| H A D | SnmpPduTrap.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 85 * <BR><CODE>type</CODE> and <CODE>version</CODE> fields are initialized with 91 version = snmpVersionOne ;
|
| /openjdk7/jdk/src/share/classes/javax/sound/midi/ |
| H A D | MidiDevice.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 302 * Device version. 304 private String version; field in class:MidiDevice.Info 313 * @param version version information for the device 315 protected Info(String name, String vendor, String description, String version) { argument 320 this.version = version; [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/ |
| H A D | AbstractType.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 48 protected AbstractType(QName name, String version) { argument 49 this(name, null, version); 56 protected AbstractType(QName name, JavaType javaType, String version) { argument 59 this.version = version; 79 return version; 82 public void setVersion(String version) { argument 143 private String version = null; field in class:AbstractType [all...] |
| /openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/ |
| H A D | ORBVersionServiceContext.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 43 version = ORBVersionFactory.getORBVersion() ; 48 this.version = ver ; 54 // pay particular attention to where the version is being read from! 59 version = ORBVersionFactory.create( in ) ; 68 version.write( os ) ; 73 return version ; 77 private ORBVersion version field in class:ORBVersionServiceContext [all...] |
| /openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
| H A D | IDLID.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 49 public IDLID (String prefix, String name, String version) argument 53 _version = version; 90 public String version () method in class:IDLID 93 } // version 95 void version (String version) argument 97 if (version [all...] |
| /openjdk7/jdk/src/share/classes/sun/text/normalizer/ |
| H A D | VersionInfo.java | 6 * under the terms of the GNU General Public License version 2 only, as 14 * version 2 for more details (a copy is included in the LICENSE file that 17 * You should have received a copy of the GNU General Public License version 29 * The original version of this source code and documentation is copyrighted * 42 * Class to store version numbers of the form major.minor.milli.micro. 52 * Returns an instance of VersionInfo with the argument version. 53 * @param version version String in the format of "major.minor.milli.micro" 56 * <= 255. If the trailing version numbers are 59 * @return an instance of VersionInfo with the argument version 64 getInstance(String version) argument [all...] |
| /openjdk7/jdk/src/share/classes/javax/swing/text/rtf/charsets/ |
| H A D | mac.txt | 5 # Unicode version: 2.0 6 # Table version: 2.00
|
| /openjdk7/jdk/test/java/security/Provider/ |
| H A D | Equals.java | 6 * under the terms of the GNU General Public License version 2 only, as 12 * version 2 for more details (a copy is included in the LICENSE file that 15 * You should have received a copy of the GNU General Public License version 51 p1.remove("Provider.id version"); 58 P1(String name, double version, String info) { argument 59 super(name, version, info); 64 P2(String name, double version, String info) { argument 65 super(name, version, info);
|